pub struct DifferentVariant;Expand description
An error type indicating that a TryFrom call failed because the
original value was of a different variant.
Trait Implementations§
Source§impl Clone for DifferentVariant
 
impl Clone for DifferentVariant
Source§fn clone(&self) -> DifferentVariant
 
fn clone(&self) -> DifferentVariant
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 DifferentVariant
 
impl Debug for DifferentVariant
Source§impl Display for DifferentVariant
 
impl Display for DifferentVariant
Source§impl Error for DifferentVariant
 
impl Error for DifferentVariant
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<DifferentVariant> for Error
 
impl From<DifferentVariant> for Error
Source§fn from(err: DifferentVariant) -> Error
 
fn from(err: DifferentVariant) -> Error
Converts to this type from the input type.
Source§impl PartialEq for DifferentVariant
 
impl PartialEq for DifferentVariant
Source§impl TryFrom<Error> for DifferentVariant
 
impl TryFrom<Error> for DifferentVariant
Source§type Error = DifferentVariant
 
type Error = DifferentVariant
The type returned in the event of a conversion error.
Source§fn try_from(
    err: Error,
) -> Result<DifferentVariant, <DifferentVariant as TryFrom<Error>>::Error>
 
fn try_from( err: Error, ) -> Result<DifferentVariant, <DifferentVariant as TryFrom<Error>>::Error>
Performs the conversion.
impl Copy for DifferentVariant
impl Eq for DifferentVariant
impl StructuralPartialEq for DifferentVariant
Auto Trait Implementations§
impl Freeze for DifferentVariant
impl RefUnwindSafe for DifferentVariant
impl Send for DifferentVariant
impl Sync for DifferentVariant
impl Unpin for DifferentVariant
impl UnwindSafe for DifferentVariant
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.