Enum time::Error [−][src]
#[non_exhaustive]
pub enum Error {
ConversionRange(ConversionRangeError),
ComponentRange(Box<ComponentRangeError>),
Parse(ParseError),
}Expand description
A unified error type for anything returned by a method in the time crate.
This can be used when you either don’t know or don’t care about the exact
error returned. Result<_, time::Error> will work in these situations.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ConversionRange(ConversionRangeError)ComponentRange(Box<ComponentRangeError>)Parse(ParseError)Trait Implementations
impl Error for Error[src]
impl Error for Error[src]fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]
fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]The lower-level source of this error, if any. Read more
fn backtrace(&self) -> Option<&Backtrace>[src]
fn backtrace(&self) -> Option<&Backtrace>[src]🔬 This is a nightly-only experimental API. (
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
fn description(&self) -> &str1.0.0[src]
fn description(&self) -> &str1.0.0[src]👎 Deprecated since 1.42.0:
use the Display impl or to_string()
impl From<ComponentRangeError> for Error[src]
impl From<ComponentRangeError> for Error[src]fn from(original: ComponentRangeError) -> Self[src]
fn from(original: ComponentRangeError) -> Self[src]Performs the conversion.
impl From<ConversionRangeError> for Error[src]
impl From<ConversionRangeError> for Error[src]fn from(original: ConversionRangeError) -> Self[src]
fn from(original: ConversionRangeError) -> Self[src]Performs the conversion.
impl From<ParseError> for Error[src]
impl From<ParseError> for Error[src]fn from(original: ParseError) -> Self[src]
fn from(original: ParseError) -> Self[src]Performs the conversion.
impl Eq for Error[src]
impl StructuralEq for Error[src]
impl StructuralPartialEq for Error[src]
Auto Trait Implementations
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more