[][src]Struct time::error::ComponentRange

#[non_exhaustive]pub struct ComponentRange {
    pub name: &'static str,
    pub minimum: i64,
    pub maximum: i64,
    pub value: i64,
    pub conditional_range: bool,
}

An error type indicating that a component provided to a method was out of range, causing a failure.

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 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

impl Clone for ComponentRange[src]

impl Copy for ComponentRange[src]

impl Debug for ComponentRange[src]

impl Display for ComponentRange[src]

impl Eq for ComponentRange[src]

impl Error for ComponentRange[src]

impl From<ComponentRange> for Error[src]

impl From<ComponentRange> for Error[src]

impl Hash for ComponentRange[src]

impl PartialEq<ComponentRange> for ComponentRange[src]

impl StructuralEq for ComponentRange[src]

impl StructuralPartialEq for ComponentRange[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,