pub struct InputTooLargeError { /* private fields */ }
Expand description
Error returned when the input string is too large.
Trait Implementations§
Source§impl Clone for InputTooLargeError
impl Clone for InputTooLargeError
Source§fn clone(&self) -> InputTooLargeError
fn clone(&self) -> InputTooLargeError
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 InputTooLargeError
impl Debug for InputTooLargeError
Source§impl Display for InputTooLargeError
impl Display for InputTooLargeError
Source§impl Error for InputTooLargeError
impl Error for InputTooLargeError
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 From<InputTooLargeError> for ParseAmountError
impl From<InputTooLargeError> for ParseAmountError
Source§fn from(value: InputTooLargeError) -> ParseAmountError
fn from(value: InputTooLargeError) -> ParseAmountError
Converts to this type from the input type.
Source§impl From<InputTooLargeError> for ParseError
impl From<InputTooLargeError> for ParseError
Source§fn from(e: InputTooLargeError) -> ParseError
fn from(e: InputTooLargeError) -> ParseError
Converts to this type from the input type.
Source§impl PartialEq for InputTooLargeError
impl PartialEq for InputTooLargeError
impl Eq for InputTooLargeError
impl StructuralPartialEq for InputTooLargeError
Auto Trait Implementations§
impl Freeze for InputTooLargeError
impl RefUnwindSafe for InputTooLargeError
impl Send for InputTooLargeError
impl Sync for InputTooLargeError
impl Unpin for InputTooLargeError
impl UnwindSafe for InputTooLargeError
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