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.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl 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.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
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
sourceimpl TryFrom<Error> for ConversionRange
impl TryFrom<Error> for ConversionRange
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more