pub struct InvalidArea<C>where
C: Display,{
pub area: C,
pub rect: Rect<C>,
}
Fields§
§area: C
§rect: Rect<C>
Trait Implementations§
Source§impl<C> Debug for InvalidArea<C>
impl<C> Debug for InvalidArea<C>
Source§impl<C> Display for InvalidArea<C>
impl<C> Display for InvalidArea<C>
Source§impl<C> Error for InvalidArea<C>
impl<C> Error for InvalidArea<C>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl<C> Freeze for InvalidArea<C>where
C: Freeze,
impl<C> RefUnwindSafe for InvalidArea<C>where
C: RefUnwindSafe,
impl<C> Send for InvalidArea<C>where
C: Send,
impl<C> Sync for InvalidArea<C>where
C: Sync,
impl<C> Unpin for InvalidArea<C>where
C: Unpin,
impl<C> UnwindSafe for InvalidArea<C>where
C: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more