[][src]Struct vcontrol::types::SysTime

pub struct SysTime(_);

Methods

impl SysTime[src]

pub fn new(
    year: u16,
    month: u8,
    day: u8,
    hour: u8,
    minute: u8,
    second: u8
) -> SysTime
[src]

pub fn year(&self) -> u16[src]

pub fn month(&self) -> u8[src]

pub fn day(&self) -> u8[src]

pub fn weekday(&self) -> u8[src]

pub fn hour(&self) -> u8[src]

pub fn minute(&self) -> u8[src]

pub fn second(&self) -> u8[src]

Trait Implementations

impl Clone for SysTime[src]

impl Debug for SysTime[src]

impl<'de> Deserialize<'de> for SysTime[src]

impl Display for SysTime[src]

impl From<NaiveDateTime> for SysTime[src]

impl From<SysTime> for NaiveDateTime[src]

impl FromStr for SysTime[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl Serialize for SysTime[src]

Auto Trait Implementations

impl RefUnwindSafe for SysTime

impl Send for SysTime

impl Sync for SysTime

impl Unpin for SysTime

impl UnwindSafe for SysTime

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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.