[][src]Struct embedded_sdmmc::Timestamp

pub struct Timestamp {
    pub year_since_1970: u8,
    pub zero_indexed_month: u8,
    pub zero_indexed_day: u8,
    pub hours: u8,
    pub minutes: u8,
    pub seconds: u8,
}

Represents an instant in time, in the local time zone. TODO: Consider replacing this with POSIX time as a u32, which would save two bytes at the expense of some maths.

Fields

year_since_1970: u8

Add 1970 to this file to get the calendar year

zero_indexed_month: u8

Add one to this value to get the calendar month

zero_indexed_day: u8

Add one to this value to get the calendar day

hours: u8

The number of hours past midnight

minutes: u8

The number of minutes past the hour

seconds: u8

The number of seconds past the minute

Methods

impl Timestamp[src]

pub fn from_fat(date: u16, time: u16) -> Timestamp[src]

Create a Timestamp from the 16-bit FAT date and time fields.

pub fn from_calendar(
    year: u16,
    month: u8,
    day: u8,
    hours: u8,
    minutes: u8,
    seconds: u8
) -> Result<Timestamp, &'static str>
[src]

Create a Timestamp from year/month/day/hour/minute/second.

Values should be given as you'd write then (i.e. 1980, 01, 01, 13, 30,

  1. is 1980-Jan-01, 1:30:05pm.

Trait Implementations

impl Clone for Timestamp[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<Timestamp> for Timestamp[src]

impl Eq for Timestamp[src]

impl Ord for Timestamp[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl PartialOrd<Timestamp> for Timestamp[src]

impl Copy for Timestamp[src]

impl Debug for Timestamp[src]

impl Display for Timestamp[src]

Auto Trait Implementations

impl Send for Timestamp

impl Sync for Timestamp

Blanket Implementations

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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