Enum uom::si::time::TryFromError[][src]

pub enum TryFromError {
    NegativeDuration,
    Overflow,
}

An error encountered converting between Time and Duration.

Variants

NegativeDuration

The given time interval was negative, making conversion to a duration nonsensical.

To convert a negative time interval to a duration, first use abs to make it positive.

Overflow

The given time interval exceeded the maximum size of a Duration.

Trait Implementations

impl Clone for TryFromError[src]

impl Copy for TryFromError[src]

impl Debug for TryFromError[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> Same<T> for T[src]

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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.