Type Alias mysqlclient_sys::MYSQL_TIME

source ·
pub type MYSQL_TIME = st_mysql_time;

Aliased Type§

struct MYSQL_TIME {
    pub year: u32,
    pub month: u32,
    pub day: u32,
    pub hour: u32,
    pub minute: u32,
    pub second: u32,
    pub second_part: u64,
    pub neg: i8,
    pub time_type: enum_mysql_timestamp_type,
}

Fields§

§year: u32§month: u32§day: u32§hour: u32§minute: u32§second: u32§second_part: u64

< microseconds

§neg: i8§time_type: enum_mysql_timestamp_type

Trait Implementations

source§

impl Clone for st_mysql_time

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for st_mysql_time

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for st_mysql_time