[][src]Enum mcp794xx::Hours

pub enum Hours {
    AM(u8),
    PM(u8),
    H24(u8),
}

Hours in either 12-hour (AM/PM) or 24-hour format

Variants

AM(u8)

AM [1-12]

PM(u8)

PM [1-12]

H24(u8)

24H format [0-23]

Trait Implementations

impl PartialEq<Hours> for Hours[src]

impl Copy for Hours[src]

impl Clone for Hours[src]

impl Debug for Hours[src]

Auto Trait Implementations

impl Unpin for Hours

impl Send for Hours

impl Sync for Hours

Blanket Implementations

impl<T> From<T> 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> Into<U> for T where
    U: From<T>, 
[src]

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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