Struct time::error::ComponentRange
source · [−]pub struct ComponentRange { /* private fields */ }
Expand description
An error type indicating that a component provided to a method was out of range, causing a failure.
Implementations
sourceimpl ComponentRange
impl ComponentRange
sourcepub const fn name(self) -> &'static str
pub const fn name(self) -> &'static str
Obtain the name of the component whose value was out of range.
sourcepub const fn is_conditional(self) -> bool
pub const fn is_conditional(self) -> bool
Whether the value’s permitted range is conditional, i.e. whether an input with this value could have succeeded if the values of other components were different.
Trait Implementations
sourceimpl Clone for ComponentRange
impl Clone for ComponentRange
sourcefn clone(&self) -> ComponentRange
fn clone(&self) -> ComponentRange
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 ComponentRange
impl Debug for ComponentRange
sourceimpl Display for ComponentRange
impl Display for ComponentRange
sourceimpl Error for ComponentRange
impl Error for ComponentRange
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>
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
use the Display impl or to_string()
sourceimpl From<ComponentRange> for Error
impl From<ComponentRange> for Error
sourcefn from(original: ComponentRange) -> Self
fn from(original: ComponentRange) -> Self
Converts to this type from the input type.
sourceimpl From<ComponentRange> for TryFromParsed
impl From<ComponentRange> for TryFromParsed
sourcefn from(v: ComponentRange) -> Self
fn from(v: ComponentRange) -> Self
Converts to this type from the input type.
sourceimpl Hash for ComponentRange
impl Hash for ComponentRange
sourceimpl PartialEq<ComponentRange> for ComponentRange
impl PartialEq<ComponentRange> for ComponentRange
sourcefn eq(&self, other: &ComponentRange) -> bool
fn eq(&self, other: &ComponentRange) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ComponentRange) -> bool
fn ne(&self, other: &ComponentRange) -> bool
This method tests for !=
.
sourceimpl TryFrom<Error> for ComponentRange
impl TryFrom<Error> for ComponentRange
sourceimpl TryFrom<TryFromParsed> for ComponentRange
impl TryFrom<TryFromParsed> for ComponentRange
type Error = DifferentVariant
type Error = DifferentVariant
The type returned in the event of a conversion error.
sourcefn try_from(err: TryFromParsed) -> Result<Self, Self::Error>
fn try_from(err: TryFromParsed) -> Result<Self, Self::Error>
Performs the conversion.
impl Copy for ComponentRange
impl Eq for ComponentRange
impl StructuralEq for ComponentRange
impl StructuralPartialEq for ComponentRange
Auto Trait Implementations
impl RefUnwindSafe for ComponentRange
impl Send for ComponentRange
impl Sync for ComponentRange
impl Unpin for ComponentRange
impl UnwindSafe for ComponentRange
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