Struct xmpp::delay::StanzaTimeInfo
source · pub struct StanzaTimeInfo {
pub received: DateTime<Utc>,
pub delays: Vec<Delay>,
}
Expand description
Time information associated with a stanza.
Contains information about when the message was received, and any claim about when it was sent.
Fields§
§received: DateTime<Utc>
Time information when the message was received by the library
delays: Vec<Delay>
Time information claimed by the sender or an intermediary.
Warning: this has security implications. See XEP-0203 security section.
Implementations§
source§impl StanzaTimeInfo
impl StanzaTimeInfo
pub fn delay_from(&self, jid: &Jid) -> Option<&Delay>
Trait Implementations§
source§impl Clone for StanzaTimeInfo
impl Clone for StanzaTimeInfo
source§fn clone(&self) -> StanzaTimeInfo
fn clone(&self) -> StanzaTimeInfo
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 moreAuto Trait Implementations§
impl RefUnwindSafe for StanzaTimeInfo
impl Send for StanzaTimeInfo
impl Sync for StanzaTimeInfo
impl Unpin for StanzaTimeInfo
impl UnwindSafe for StanzaTimeInfo
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