Enum ds1307::Hours[][src]

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

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

Variants

AM [1-12]

PM [1-12]

24H format [0-23]

Trait Implementations

impl Debug for Hours
[src]

Formats the value using the given formatter. Read more

impl Clone for Hours
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Hours

impl Sync for Hours