Struct time::error::DifferentVariant
source · 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 copy 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)>
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) -> Self
fn from(err: DifferentVariant) -> Self
Converts to this type from the input type.
source§impl PartialEq<DifferentVariant> for DifferentVariant
impl PartialEq<DifferentVariant> for DifferentVariant
source§fn eq(&self, other: &DifferentVariant) -> bool
fn eq(&self, other: &DifferentVariant) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.