pub enum SetTimeZoneValue {
Ident(Ident),
Literal(Value),
Local,
Default,
}Variants§
Trait Implementations§
Source§impl Clone for SetTimeZoneValue
impl Clone for SetTimeZoneValue
Source§fn clone(&self) -> SetTimeZoneValue
fn clone(&self) -> SetTimeZoneValue
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 SetTimeZoneValue
impl Debug for SetTimeZoneValue
Source§impl Display for SetTimeZoneValue
impl Display for SetTimeZoneValue
Source§impl Hash for SetTimeZoneValue
impl Hash for SetTimeZoneValue
Source§impl PartialEq for SetTimeZoneValue
impl PartialEq for SetTimeZoneValue
impl Eq for SetTimeZoneValue
impl StructuralPartialEq for SetTimeZoneValue
Auto Trait Implementations§
impl Freeze for SetTimeZoneValue
impl RefUnwindSafe for SetTimeZoneValue
impl Send for SetTimeZoneValue
impl Sync for SetTimeZoneValue
impl Unpin for SetTimeZoneValue
impl UnwindSafe for SetTimeZoneValue
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more