Struct drv8825::embedded_time::duration::Generic[][src]

pub struct Generic<T> { /* fields omitted */ }

The Generic Duration type allows an arbitrary scaling factor to be used without having to impl FixedPoint.

The purpose of this type is to allow a simple Duration object that can be defined at run-time. It does this by replacing the const scaling factor with a struct field.

Implementations

impl<T> Generic<T>[src]

pub const fn new(integer: T, scaling_factor: Fraction) -> Generic<T>[src]

Constructs a new fixed-point Generic Duration value

pub const fn integer(&self) -> &T[src]

Returns the integer part

pub const fn scaling_factor(&self) -> &Fraction[src]

Returns the scaling factor Fraction part

Trait Implementations

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

impl<T> Copy for Generic<T> where
    T: Copy
[src]

impl<T> Debug for Generic<T> where
    T: Debug
[src]

impl<T> Default for Generic<T> where
    T: Default
[src]

impl<T> Duration for Generic<T> where
    T: TimeInt, 
[src]

impl<T> Eq for Generic<T> where
    T: Eq
[src]

impl<T> From<Hours<T>> for Generic<T> where
    T: TimeInt, 
[src]

impl<T> From<Microseconds<T>> for Generic<T> where
    T: TimeInt, 
[src]

impl<T> From<Milliseconds<T>> for Generic<T> where
    T: TimeInt, 
[src]

impl<T> From<Minutes<T>> for Generic<T> where
    T: TimeInt, 
[src]

impl<T> From<Nanoseconds<T>> for Generic<T> where
    T: TimeInt, 
[src]

impl<T> From<Seconds<T>> for Generic<T> where
    T: TimeInt, 
[src]

impl<T> Hash for Generic<T> where
    T: Hash
[src]

impl<T> Ord for Generic<T> where
    T: Ord
[src]

impl<T> PartialEq<Generic<T>> for Generic<T> where
    T: PartialEq<T>, 
[src]

impl<T> PartialOrd<Generic<T>> for Generic<T> where
    T: PartialOrd<T>, 
[src]

impl<T> StructuralEq for Generic<T>[src]

impl<T> StructuralPartialEq for Generic<T>[src]

impl<SourceInt, DestInt> TryFrom<Generic<SourceInt>> for Minutes<DestInt> where
    DestInt: TimeInt + TryFrom<SourceInt>,
    SourceInt: TimeInt, 
[src]

type Error = ConversionError

The type returned in the event of a conversion error.

pub fn try_from(
    generic_duration: Generic<SourceInt>
) -> Result<Minutes<DestInt>, <Minutes<DestInt> as TryFrom<Generic<SourceInt>>>::Error>
[src]

impl<SourceInt, DestInt> TryFrom<Generic<SourceInt>> for Hours<DestInt> where
    DestInt: TimeInt + TryFrom<SourceInt>,
    SourceInt: TimeInt, 
[src]

type Error = ConversionError

The type returned in the event of a conversion error.

pub fn try_from(
    generic_duration: Generic<SourceInt>
) -> Result<Hours<DestInt>, <Hours<DestInt> as TryFrom<Generic<SourceInt>>>::Error>
[src]

impl<SourceInt, DestInt> TryFrom<Generic<SourceInt>> for Milliseconds<DestInt> where
    DestInt: TimeInt + TryFrom<SourceInt>,
    SourceInt: TimeInt, 
[src]

type Error = ConversionError

The type returned in the event of a conversion error.

pub fn try_from(
    generic_duration: Generic<SourceInt>
) -> Result<Milliseconds<DestInt>, <Milliseconds<DestInt> as TryFrom<Generic<SourceInt>>>::Error>
[src]

impl<SourceInt, DestInt> TryFrom<Generic<SourceInt>> for Nanoseconds<DestInt> where
    DestInt: TimeInt + TryFrom<SourceInt>,
    SourceInt: TimeInt, 
[src]

type Error = ConversionError

The type returned in the event of a conversion error.

pub fn try_from(
    generic_duration: Generic<SourceInt>
) -> Result<Nanoseconds<DestInt>, <Nanoseconds<DestInt> as TryFrom<Generic<SourceInt>>>::Error>
[src]

impl<SourceInt, DestInt> TryFrom<Generic<SourceInt>> for Microseconds<DestInt> where
    DestInt: TimeInt + TryFrom<SourceInt>,
    SourceInt: TimeInt, 
[src]

type Error = ConversionError

The type returned in the event of a conversion error.

pub fn try_from(
    generic_duration: Generic<SourceInt>
) -> Result<Microseconds<DestInt>, <Microseconds<DestInt> as TryFrom<Generic<SourceInt>>>::Error>
[src]

impl<SourceInt, DestInt> TryFrom<Generic<SourceInt>> for Seconds<DestInt> where
    DestInt: TimeInt + TryFrom<SourceInt>,
    SourceInt: TimeInt, 
[src]

type Error = ConversionError

The type returned in the event of a conversion error.

pub fn try_from(
    generic_duration: Generic<SourceInt>
) -> Result<Seconds<DestInt>, <Seconds<DestInt> as TryFrom<Generic<SourceInt>>>::Error>
[src]

Auto Trait Implementations

impl<T> Send for Generic<T> where
    T: Send

impl<T> Sync for Generic<T> where
    T: Sync

impl<T> Unpin for Generic<T> where
    T: Unpin

Blanket Implementations

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

impl<T> Az for T[src]

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

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

impl<T> CheckedAs for T[src]

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

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

impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[src]

impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, 
[src]

impl<T> OverflowingAs for T[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatingAs for T[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<T> UnwrappedAs for T[src]

impl<T> WrappingAs for T[src]