pub struct TryFromSliceError(/* private fields */);
Expand description
The error type returned when a conversion from a slice to an array fails.
Trait Implementationsยง
1.34.0 ยท Sourceยงimpl Clone for TryFromSliceError
impl Clone for TryFromSliceError
Sourceยงfn clone(&self) -> TryFromSliceError
fn clone(&self) -> TryFromSliceError
Returns a duplicate of the value. Read more
1.0.0 ยท Sourceยงfn clone_from(&mut self, source: &Self)where
Self:,
fn clone_from(&mut self, source: &Self)where
Self:,
Performs copy-assignment from
source
. Read more1.34.0 ยท Sourceยงimpl Debug for TryFromSliceError
impl Debug for TryFromSliceError
1.35.0 ยท Sourceยงimpl Display for TryFromSliceError
impl Display for TryFromSliceError
1.34.0 ยท Sourceยงimpl Error for TryFromSliceError
impl Error for TryFromSliceError
Sourceยงfn description(&self) -> &str
fn description(&self) -> &str
๐Deprecated since 1.42.0: use the Display impl or to_string()
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.36.0 ยท Sourceยงimpl From<Infallible> for TryFromSliceError
impl From<Infallible> for TryFromSliceError
Sourceยงfn from(x: Infallible) -> TryFromSliceError
fn from(x: Infallible) -> TryFromSliceError
Converts to this type from the input type.
impl Copy for TryFromSliceError
Auto Trait Implementationsยง
impl Freeze for TryFromSliceError
impl RefUnwindSafe for TryFromSliceError
impl Send for TryFromSliceError
impl Sync for TryFromSliceError
impl Unpin for TryFromSliceError
impl UnwindSafe for TryFromSliceError
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