[][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 serialize_to_fat(self) -> [u8; 4][src]

Serialize a Timestamp to FAT format

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, 05) is 1980-Jan-01, 1:30:05pm.

Trait Implementations

impl Clone for Timestamp[src]

impl Copy for Timestamp[src]

impl Debug for Timestamp[src]

impl Display for Timestamp[src]

impl Eq for Timestamp[src]

impl Ord for Timestamp[src]

impl PartialEq<Timestamp> for Timestamp[src]

impl PartialOrd<Timestamp> for Timestamp[src]

impl StructuralEq for Timestamp[src]

impl StructuralPartialEq for Timestamp[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.