pub struct CoordinatedUniversalTimeOffset {
pub hour_offset: i64,
pub minute_offset: Option<i64>,
pub sense: AheadOrBehind,
}Fields§
§hour_offset: i64§minute_offset: Option<i64>§sense: AheadOrBehindTrait Implementations§
Source§impl Clone for CoordinatedUniversalTimeOffset
impl Clone for CoordinatedUniversalTimeOffset
Source§fn clone(&self) -> CoordinatedUniversalTimeOffset
fn clone(&self) -> CoordinatedUniversalTimeOffset
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for CoordinatedUniversalTimeOffset
impl PartialEq for CoordinatedUniversalTimeOffset
Source§fn eq(&self, other: &CoordinatedUniversalTimeOffset) -> bool
fn eq(&self, other: &CoordinatedUniversalTimeOffset) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CoordinatedUniversalTimeOffset
Auto Trait Implementations§
impl Freeze for CoordinatedUniversalTimeOffset
impl RefUnwindSafe for CoordinatedUniversalTimeOffset
impl Send for CoordinatedUniversalTimeOffset
impl Sync for CoordinatedUniversalTimeOffset
impl Unpin for CoordinatedUniversalTimeOffset
impl UnsafeUnpin for CoordinatedUniversalTimeOffset
impl UnwindSafe for CoordinatedUniversalTimeOffset
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