pub struct TooLongError { /* private fields */ }Expand description
Error returned when a string newtype is longer than its len upper bound.
Implementations§
Trait Implementations§
Source§impl Clone for TooLongError
impl Clone for TooLongError
Source§fn clone(&self) -> TooLongError
fn clone(&self) -> TooLongError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TooLongError
impl Debug for TooLongError
Source§impl Display for TooLongError
impl Display for TooLongError
Source§impl Error for TooLongError
impl Error for TooLongError
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()
Source§impl PartialEq for TooLongError
impl PartialEq for TooLongError
Source§fn eq(&self, other: &TooLongError) -> bool
fn eq(&self, other: &TooLongError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TooLongError
impl StructuralPartialEq for TooLongError
Auto Trait Implementations§
impl Freeze for TooLongError
impl RefUnwindSafe for TooLongError
impl Send for TooLongError
impl Sync for TooLongError
impl Unpin for TooLongError
impl UnsafeUnpin for TooLongError
impl UnwindSafe for TooLongError
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