pub struct LengthTooLargeError {
pub length: usize,
pub max_length: usize,
}Expand description
Fields§
§length: usizeThe length that was too large.
max_length: usizeThe maximum allowed length.
Trait Implementations§
Source§impl Clone for LengthTooLargeError
impl Clone for LengthTooLargeError
Source§fn clone(&self) -> LengthTooLargeError
fn clone(&self) -> LengthTooLargeError
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 LengthTooLargeError
impl Debug for LengthTooLargeError
Source§impl Display for LengthTooLargeError
impl Display for LengthTooLargeError
Source§impl Error for LengthTooLargeError
impl Error for LengthTooLargeError
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()
impl Copy for LengthTooLargeError
Auto Trait Implementations§
impl Freeze for LengthTooLargeError
impl RefUnwindSafe for LengthTooLargeError
impl Send for LengthTooLargeError
impl Sync for LengthTooLargeError
impl Unpin for LengthTooLargeError
impl UnwindSafe for LengthTooLargeError
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