pub struct ParsedDatetime {
pub ymd: (i64, u8, u8),
pub hms: Option<(u8, u8, f32)>,
pub tz: Option<(i8, u8)>,
pub nanosecond: Option<i64>,
}
Fields§
§ymd: (i64, u8, u8)
§hms: Option<(u8, u8, f32)>
§tz: Option<(i8, u8)>
§nanosecond: Option<i64>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParsedDatetime
impl RefUnwindSafe for ParsedDatetime
impl Send for ParsedDatetime
impl Sync for ParsedDatetime
impl Unpin for ParsedDatetime
impl UnwindSafe for ParsedDatetime
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