[][src]Struct ruma_events::UnsignedData

pub struct UnsignedData {
    pub age: Option<Int>,
    pub redacted_because: Option<EventJson<RedactionEvent>>,
    pub transaction_id: Option<String>,
}

Extra information about an event that is not incorporated into the event's hash.

Fields

age: Option<Int>

The time in milliseconds that has elapsed since the event was sent. This field is generated by the local homeserver, and may be incorrect if the local time on at least one of the two servers is out of sync, which can cause the age to either be negative or greater than it actually is.

redacted_because: Option<EventJson<RedactionEvent>>

The event that redacted this event, if any.

transaction_id: Option<String>

The client-supplied transaction ID, if the client being given the event is the same one which sent it.

Methods

impl UnsignedData[src]

pub fn is_empty(&self) -> bool[src]

Whether this unsigned data is empty (all fields are None).

This method is used to determine whether to skip serializing the unsigned field in room events. Do not use it to determine whether an incoming unsigned field was present - it could still have been present but contained none of the known fields.

Trait Implementations

impl Clone for UnsignedData[src]

impl Debug for UnsignedData[src]

impl Default for UnsignedData[src]

impl<'de> Deserialize<'de> for UnsignedData[src]

impl Serialize for UnsignedData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,