pub struct TimezoneEntry {
pub name: String,
pub icon: String,
pub current_time: String,
}Expand description
A timezone entry in the world clock report.
Fields§
§name: StringDisplay name (e.g., “MSK”).
icon: StringIcon for this timezone.
current_time: StringFormatted current/converted time.
Trait Implementations§
Source§impl Clone for TimezoneEntry
impl Clone for TimezoneEntry
Source§fn clone(&self) -> TimezoneEntry
fn clone(&self) -> TimezoneEntry
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 moreAuto Trait Implementations§
impl Freeze for TimezoneEntry
impl RefUnwindSafe for TimezoneEntry
impl Send for TimezoneEntry
impl Sync for TimezoneEntry
impl Unpin for TimezoneEntry
impl UnsafeUnpin for TimezoneEntry
impl UnwindSafe for TimezoneEntry
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