#[repr(u8)]pub enum TimeZoneDatabase {
Full = 0,
Partial = 1,
None = 2,
}Variants§
Full = 0
Node has a full list of the available time zones
Partial = 1
Node has a partial list of the available time zones
None = 2
Node does not have a time zone database
Implementations§
Trait Implementations§
Source§impl Clone for TimeZoneDatabase
impl Clone for TimeZoneDatabase
Source§fn clone(&self) -> TimeZoneDatabase
fn clone(&self) -> TimeZoneDatabase
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 moreSource§impl Debug for TimeZoneDatabase
impl Debug for TimeZoneDatabase
Source§impl<'de> Deserialize<'de> for TimeZoneDatabase
impl<'de> Deserialize<'de> for TimeZoneDatabase
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<TimeZoneDatabase> for u8
impl From<TimeZoneDatabase> for u8
Source§fn from(val: TimeZoneDatabase) -> Self
fn from(val: TimeZoneDatabase) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TimeZoneDatabase
impl PartialEq for TimeZoneDatabase
Source§impl Serialize for TimeZoneDatabase
impl Serialize for TimeZoneDatabase
impl Copy for TimeZoneDatabase
impl Eq for TimeZoneDatabase
impl StructuralPartialEq for TimeZoneDatabase
Auto Trait Implementations§
impl Freeze for TimeZoneDatabase
impl RefUnwindSafe for TimeZoneDatabase
impl Send for TimeZoneDatabase
impl Sync for TimeZoneDatabase
impl Unpin for TimeZoneDatabase
impl UnwindSafe for TimeZoneDatabase
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