pub struct TimeResult {
pub tz_offset: FixedOffset,
pub utc: DateTime<Utc>,
}
Expand description
An entity time result, containing an unique DateTime.
Fields§
§tz_offset: FixedOffset
The UTC offset
utc: DateTime<Utc>
The UTC timestamp
Trait Implementations§
Source§impl AsXml for TimeResult
impl AsXml for TimeResult
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<&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 From<DateTime<FixedOffset>> for TimeResult
impl From<DateTime<FixedOffset>> for TimeResult
Source§fn from(dt: DateTime<FixedOffset>) -> Self
fn from(dt: 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(time: TimeResult) -> Self
fn from(time: 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(time: TimeResult) -> Self
fn from(time: 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 TryFrom<Element> for TimeResult
impl TryFrom<Element> for TimeResult
impl Copy for TimeResult
impl IqResultPayload 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