pub struct RefTime {
pub year: u16,
pub month: u8,
pub day: u8,
pub hour: u8,
pub minute: u8,
pub second: u8,
}
Fields§
§year: u16
Year (4 digits).
month: u8
Month.
day: u8
Day.
hour: u8
Hour.
minute: u8
Minute.
second: u8
Second.
Trait Implementations§
impl StructuralPartialEq for RefTime
Auto Trait Implementations§
impl Freeze for RefTime
impl RefUnwindSafe for RefTime
impl Send for RefTime
impl Sync for RefTime
impl Unpin for RefTime
impl UnwindSafe for RefTime
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