pub struct TryFromStringError<T>(/* private fields */);
Expand description
The error returned when a String
conversion to String32
would require a buffer larger than u32::MAX
bytes.
Implementations§
Source§impl<T> TryFromStringError<T>
impl<T> TryFromStringError<T>
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Return the string that was unable to be converted into a String32
.
Trait Implementations§
Source§impl<T: Clone> Clone for TryFromStringError<T>
impl<T: Clone> Clone for TryFromStringError<T>
Source§fn clone(&self) -> TryFromStringError<T>
fn clone(&self) -> TryFromStringError<T>
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<T: Debug> Debug for TryFromStringError<T>
impl<T: Debug> Debug for TryFromStringError<T>
Source§impl<T> Display for TryFromStringError<T>
impl<T> Display for TryFromStringError<T>
Source§impl<T: PartialEq> PartialEq for TryFromStringError<T>
impl<T: PartialEq> PartialEq for TryFromStringError<T>
impl<T: Eq> Eq for TryFromStringError<T>
impl<T> StructuralPartialEq for TryFromStringError<T>
Auto Trait Implementations§
impl<T> Freeze for TryFromStringError<T>where
T: Freeze,
impl<T> RefUnwindSafe for TryFromStringError<T>where
T: RefUnwindSafe,
impl<T> Send for TryFromStringError<T>where
T: Send,
impl<T> Sync for TryFromStringError<T>where
T: Sync,
impl<T> Unpin for TryFromStringError<T>where
T: Unpin,
impl<T> UnwindSafe for TryFromStringError<T>where
T: UnwindSafe,
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