#[repr(C)]pub struct SceDateTime {
pub year: c_ushort,
pub month: c_ushort,
pub day: c_ushort,
pub hour: c_ushort,
pub minute: c_ushort,
pub second: c_ushort,
pub microsecond: c_uint,
}Fields§
§year: c_ushort§month: c_ushort§day: c_ushort§hour: c_ushort§minute: c_ushort§second: c_ushort§microsecond: c_uintTrait Implementations§
Source§impl Clone for SceDateTime
impl Clone for SceDateTime
Source§fn clone(&self) -> SceDateTime
fn clone(&self) -> SceDateTime
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SceDateTime
impl Debug for SceDateTime
impl Copy for SceDateTime
Auto Trait Implementations§
impl Freeze for SceDateTime
impl RefUnwindSafe for SceDateTime
impl Send for SceDateTime
impl Sync for SceDateTime
impl Unpin for SceDateTime
impl UnsafeUnpin for SceDateTime
impl UnwindSafe for SceDateTime
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