pub struct LocalTime {
pub hour_component: i64,
pub minute_component: Option<i64>,
pub second_component: Option<f64>,
pub zone: CoordinatedUniversalTimeOffsetRef,
}Fields§
§hour_component: i64§minute_component: Option<i64>§second_component: Option<f64>§zone: CoordinatedUniversalTimeOffsetRefTrait Implementations§
impl StructuralPartialEq for LocalTime
Auto Trait Implementations§
impl Freeze for LocalTime
impl RefUnwindSafe for LocalTime
impl Send for LocalTime
impl Sync for LocalTime
impl Unpin for LocalTime
impl UnsafeUnpin for LocalTime
impl UnwindSafe for LocalTime
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