Struct time::error::ComponentRange
source · [−]#[non_exhaustive]pub struct ComponentRange {
pub name: &'static str,
pub minimum: i64,
pub maximum: i64,
pub value: i64,
pub conditional_range: bool,
}
Expand description
An error type indicating that a component provided to a method was out of range, causing a failure.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: &'static str
Name of the component.
minimum: i64
Minimum allowed value, inclusive.
maximum: i64
Maximum allowed value, inclusive.
value: i64
Value that was provided.
conditional_range: bool
The minimum and/or maximum value is conditional on the value of other parameters.
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
Performs the conversion.
sourceimpl From<ComponentRange> for Error
impl From<ComponentRange> for Error
sourcefn from(error: ComponentRange) -> Self
fn from(error: ComponentRange) -> Self
Performs the conversion.
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 !=
.
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 · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more