pub struct UtcTimeZoneResult {
pub year: [i32; 2],
pub month: [i32; 2],
pub day: [i32; 2],
pub hour: [i32; 2],
pub min: [i32; 2],
pub sec: [f64; 2],
}Expand description
[0 -> jday / 1 -> utc]
Fields§
§year: [i32; 2]§month: [i32; 2]§day: [i32; 2]§hour: [i32; 2]§min: [i32; 2]§sec: [f64; 2]Trait Implementations§
Source§impl Clone for UtcTimeZoneResult
impl Clone for UtcTimeZoneResult
Source§fn clone(&self) -> UtcTimeZoneResult
fn clone(&self) -> UtcTimeZoneResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for UtcTimeZoneResult
impl RefUnwindSafe for UtcTimeZoneResult
impl Send for UtcTimeZoneResult
impl Sync for UtcTimeZoneResult
impl Unpin for UtcTimeZoneResult
impl UnwindSafe for UtcTimeZoneResult
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