pub(crate) enum CrateFeatureError {
TzSystem,
TzdbConcatenated,
TzdbZoneInfo,
}Expand description
An error used whenever a failure is caused by a missing crate feature.
This enum doesn’t necessarily contain every Jiff crate feature. It only contains the features whose absence can result in an error.
Variants§
Trait Implementations§
Source§impl Clone for CrateFeatureError
impl Clone for CrateFeatureError
Source§fn clone(&self) -> CrateFeatureError
fn clone(&self) -> CrateFeatureError
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 CrateFeatureError
impl Debug for CrateFeatureError
Source§impl Display for CrateFeatureError
impl Display for CrateFeatureError
Source§impl From<CrateFeatureError> for Error
impl From<CrateFeatureError> for Error
Source§fn from(err: CrateFeatureError) -> Error
fn from(err: CrateFeatureError) -> Error
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CrateFeatureError
impl RefUnwindSafe for CrateFeatureError
impl Send for CrateFeatureError
impl Sync for CrateFeatureError
impl Unpin for CrateFeatureError
impl UnwindSafe for CrateFeatureError
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