#[non_exhaustive]pub struct IncompatibleRowSize;
Expand description
Error returned by DynamicGrid::push_row
if the length of the row being pushed
is incompatible with the current width of the grid
Trait Implementations§
Source§impl Clone for IncompatibleRowSize
impl Clone for IncompatibleRowSize
Source§fn clone(&self) -> IncompatibleRowSize
fn clone(&self) -> IncompatibleRowSize
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IncompatibleRowSize
impl Debug for IncompatibleRowSize
Source§impl Display for IncompatibleRowSize
impl Display for IncompatibleRowSize
Source§impl Error for IncompatibleRowSize
impl Error for IncompatibleRowSize
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 Freeze for IncompatibleRowSize
impl RefUnwindSafe for IncompatibleRowSize
impl Send for IncompatibleRowSize
impl Sync for IncompatibleRowSize
impl Unpin for IncompatibleRowSize
impl UnwindSafe for IncompatibleRowSize
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