pub struct DateTimeComponents {
pub year: i32,
pub month: i32,
pub day: i32,
pub hour: i32,
pub minute: i32,
pub second: i32,
pub millis: i32,
}Fields§
§year: i32§month: i32§day: i32§hour: i32§minute: i32§second: i32§millis: i32Trait Implementations§
Auto Trait Implementations§
impl Freeze for DateTimeComponents
impl RefUnwindSafe for DateTimeComponents
impl Send for DateTimeComponents
impl Sync for DateTimeComponents
impl Unpin for DateTimeComponents
impl UnsafeUnpin for DateTimeComponents
impl UnwindSafe for DateTimeComponents
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