Struct cftime_rs::parser::ParsedDatetime
source · 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 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