pub struct LengthLimitExceeded;
Expand description
A unit error that represents a length overflow.
Contains no further information
Trait Implementations§
source§impl Clone for LengthLimitExceeded
impl Clone for LengthLimitExceeded
source§fn clone(&self) -> LengthLimitExceeded
fn clone(&self) -> LengthLimitExceeded
Returns a copy 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 LengthLimitExceeded
impl Debug for LengthLimitExceeded
source§impl Display for LengthLimitExceeded
impl Display for LengthLimitExceeded
source§impl Error for LengthLimitExceeded
impl Error for LengthLimitExceeded
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
source§impl From<LengthLimitExceeded> for Error
impl From<LengthLimitExceeded> for Error
source§fn from(value: LengthLimitExceeded) -> Self
fn from(value: LengthLimitExceeded) -> Self
Converts to this type from the input type.
source§impl PartialEq for LengthLimitExceeded
impl PartialEq for LengthLimitExceeded
source§fn eq(&self, other: &LengthLimitExceeded) -> bool
fn eq(&self, other: &LengthLimitExceeded) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for LengthLimitExceeded
impl Eq for LengthLimitExceeded
impl StructuralPartialEq for LengthLimitExceeded
Auto Trait Implementations§
impl Freeze for LengthLimitExceeded
impl RefUnwindSafe for LengthLimitExceeded
impl Send for LengthLimitExceeded
impl Sync for LengthLimitExceeded
impl Unpin for LengthLimitExceeded
impl UnwindSafe for LengthLimitExceeded
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