#[repr(C)]pub struct NSTDDateTime {
pub year: c_int,
pub month: c_uint,
pub day: c_uint,
pub hour: c_uint,
pub minute: c_uint,
pub second: c_uint,
pub nanosecond: c_uint,
}
Expand description
Represents a datetime object.
Fields§
§year: c_int
§month: c_uint
§day: c_uint
§hour: c_uint
§minute: c_uint
§second: c_uint
§nanosecond: c_uint
Auto Trait Implementations§
impl Freeze for NSTDDateTime
impl RefUnwindSafe for NSTDDateTime
impl Send for NSTDDateTime
impl Sync for NSTDDateTime
impl Unpin for NSTDDateTime
impl UnwindSafe for NSTDDateTime
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