pub struct NaiveTimeWithOffset { /* private fields */ }
Expand description
A NaiveTimeWithOffset
is a combination of a chrono::NaiveTime
and
an optional chrono::FixedOffset
.
It represents xs:time
Trait Implementations§
Source§impl Clone for NaiveTimeWithOffset
impl Clone for NaiveTimeWithOffset
Source§fn clone(&self) -> NaiveTimeWithOffset
fn clone(&self) -> NaiveTimeWithOffset
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 NaiveTimeWithOffset
impl Debug for NaiveTimeWithOffset
Source§impl From<NaiveTimeWithOffset> for Atomic
impl From<NaiveTimeWithOffset> for Atomic
Source§fn from(time: NaiveTimeWithOffset) -> Atomic
fn from(time: NaiveTimeWithOffset) -> Atomic
Converts to this type from the input type.
Source§impl Hash for NaiveTimeWithOffset
impl Hash for NaiveTimeWithOffset
Source§impl PartialEq for NaiveTimeWithOffset
impl PartialEq for NaiveTimeWithOffset
Source§impl TryFrom<Atomic> for NaiveTimeWithOffset
impl TryFrom<Atomic> for NaiveTimeWithOffset
impl Eq for NaiveTimeWithOffset
impl StructuralPartialEq for NaiveTimeWithOffset
Auto Trait Implementations§
impl Freeze for NaiveTimeWithOffset
impl RefUnwindSafe for NaiveTimeWithOffset
impl Send for NaiveTimeWithOffset
impl Sync for NaiveTimeWithOffset
impl Unpin for NaiveTimeWithOffset
impl UnwindSafe for NaiveTimeWithOffset
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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