#[repr(C)]pub struct OSCalendarTime {
pub sec: c_int,
pub min: c_int,
pub hour: c_int,
pub mday: c_int,
pub mon: c_int,
pub year: c_int,
pub wday: c_int,
pub yday: c_int,
pub msec: c_int,
pub usec: c_int,
}Fields§
§sec: c_int§min: c_int§hour: c_int§mday: c_int§mon: c_int§year: c_int§wday: c_int§yday: c_int§msec: c_int§usec: c_intTrait Implementations§
Source§impl Clone for OSCalendarTime
impl Clone for OSCalendarTime
Source§fn clone(&self) -> OSCalendarTime
fn clone(&self) -> OSCalendarTime
Returns a duplicate 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 OSCalendarTime
impl Debug for OSCalendarTime
impl Copy for OSCalendarTime
Auto Trait Implementations§
impl Freeze for OSCalendarTime
impl RefUnwindSafe for OSCalendarTime
impl Send for OSCalendarTime
impl Sync for OSCalendarTime
impl Unpin for OSCalendarTime
impl UnwindSafe for OSCalendarTime
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