Struct xmpp_parsers::time::TimeResult
source · pub struct TimeResult {
pub tz_offset: FixedOffset,
pub utc: DateTime<Utc>,
}
Expand description
An entity time result, containing an unique DateTime.
Note that this type can be converted to and from chrono::DateTime
(with chrono::Utc
and chrono::FixedOffset
timezones), which is
probably more friendly than using it directly.
Fields§
§tz_offset: FixedOffset
The UTC offset
utc: DateTime<Utc>
The UTC timestamp
Trait Implementations§
source§impl Clone for TimeResult
impl Clone for TimeResult
source§fn clone(&self) -> TimeResult
fn clone(&self) -> TimeResult
Returns a copy 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 TimeResult
impl Debug for TimeResult
source§impl From<DateTime<FixedOffset>> for TimeResult
impl From<DateTime<FixedOffset>> for TimeResult
source§fn from(other: DateTime<FixedOffset>) -> Self
fn from(other: DateTime<FixedOffset>) -> Self
Converts to this type from the input type.
source§impl From<TimeResult> for DateTime<FixedOffset>
impl From<TimeResult> for DateTime<FixedOffset>
source§fn from(other: TimeResult) -> Self
fn from(other: TimeResult) -> Self
Converts to this type from the input type.
source§impl From<TimeResult> for DateTime<Utc>
impl From<TimeResult> for DateTime<Utc>
source§fn from(other: TimeResult) -> Self
fn from(other: TimeResult) -> Self
Converts to this type from the input type.
source§impl From<TimeResult> for Element
impl From<TimeResult> for Element
source§fn from(other: TimeResult) -> Self
fn from(other: TimeResult) -> Self
Converts to this type from the input type.
source§impl FromXml for TimeResult
impl FromXml for TimeResult
source§impl IntoXml for TimeResult
impl IntoXml for TimeResult
source§impl PartialEq for TimeResult
impl PartialEq for TimeResult
source§fn eq(&self, other: &TimeResult) -> bool
fn eq(&self, other: &TimeResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for TimeResult
impl TryFrom<Element> for TimeResult
impl IqResultPayload for TimeResult
impl StructuralPartialEq for TimeResult
Auto Trait Implementations§
impl Freeze for TimeResult
impl RefUnwindSafe for TimeResult
impl Send for TimeResult
impl Sync for TimeResult
impl Unpin for TimeResult
impl UnwindSafe for TimeResult
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