Struct time::error::ConversionRange
source · [−]pub struct ConversionRange;
Expand description
An error type indicating that a conversion failed because the target type could not store the initial value.
Trait Implementations
sourceimpl Clone for ConversionRange
impl Clone for ConversionRange
sourcefn clone(&self) -> ConversionRange
fn clone(&self) -> ConversionRange
Returns a copy of the value. Read more
1.0.0const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ConversionRange
impl Debug for ConversionRange
sourceimpl Display for ConversionRange
impl Display for ConversionRange
sourceimpl Error for ConversionRange
impl Error for ConversionRange
1.30.0fn 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.0fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
sourceimpl From<ConversionRange> for Error
impl From<ConversionRange> for Error
sourcefn from(err: ConversionRange) -> Self
fn from(err: ConversionRange) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<ConversionRange> for ConversionRange
impl PartialEq<ConversionRange> for ConversionRange
sourcefn eq(&self, other: &ConversionRange) -> bool
fn eq(&self, other: &ConversionRange) -> bool
sourceimpl TryFrom<Error> for ConversionRange
impl TryFrom<Error> for ConversionRange
type Error = DifferentVariant
type Error = DifferentVariant
The type returned in the event of a conversion error.
impl Copy for ConversionRange
impl Eq for ConversionRange
impl StructuralEq for ConversionRange
impl StructuralPartialEq for ConversionRange
Auto Trait Implementations
impl RefUnwindSafe for ConversionRange
impl Send for ConversionRange
impl Sync for ConversionRange
impl Unpin for ConversionRange
impl UnwindSafe for ConversionRange
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for Twhere
T: Clone,
impl<T> ToOwned for Twhere
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more