[][src]Struct dhcpd_parser::common::Date

pub struct Date {
    pub weekday: i64,
    pub year: i64,
    pub month: i64,
    pub day: i64,
    pub hour: i64,
    pub minute: i64,
    pub second: i64,
}

Fields

weekday: i64year: i64month: i64day: i64hour: i64minute: i64second: i64

Methods

impl Date[src]

pub fn from<S: Into<String>>(wd: S, d: S, t: S) -> Result<Date, String>[src]

pub fn from_rfc3339<S: AsRef<str>>(
    weekday: u8,
    input: S
) -> Result<Date, String>
[src]

Transforms UTC datetime in RFC3339 format into Date object

pub fn new() -> Date[src]

Trait Implementations

impl Clone for Date[src]

impl Copy for Date[src]

impl Eq for Date[src]

impl Ord for Date[src]

impl PartialEq<Date> for Date[src]

impl PartialOrd<Date> for Date[src]

impl Display for Date[src]

impl Debug for Date[src]

Auto Trait Implementations

impl Send for Date

impl Sync for Date

impl Unpin for Date

impl UnwindSafe for Date

impl RefUnwindSafe for Date

Blanket Implementations

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

impl<T> From<T> for 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.

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]