#[repr(C)]pub struct MYSQL_TIME {
pub year: c_uint,
pub month: c_uint,
pub day: c_uint,
pub hour: c_uint,
pub minute: c_uint,
pub second: c_uint,
pub second_part: c_ulong,
pub neg: bool,
pub time_type: enum_mysql_timestamp_type,
pub time_zone_displacement: c_int,
}
Fields§
§year: c_uint
§month: c_uint
§day: c_uint
§hour: c_uint
§minute: c_uint
§second: c_uint
§second_part: c_ulong
§neg: bool
§time_type: enum_mysql_timestamp_type
§time_zone_displacement: c_int
Trait Implementations§
Source§impl Clone for MYSQL_TIME
impl Clone for MYSQL_TIME
Source§fn clone(&self) -> MYSQL_TIME
fn clone(&self) -> MYSQL_TIME
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MYSQL_TIME
impl Debug for MYSQL_TIME
impl Copy for MYSQL_TIME
Auto Trait Implementations§
impl Freeze for MYSQL_TIME
impl RefUnwindSafe for MYSQL_TIME
impl Send for MYSQL_TIME
impl Sync for MYSQL_TIME
impl Unpin for MYSQL_TIME
impl UnwindSafe for MYSQL_TIME
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more