[][src]Struct ruma_events::room::encryption::EncryptionEventContent

pub struct EncryptionEventContent {
    pub algorithm: Algorithm,
    pub rotation_period_ms: Option<UInt>,
    pub rotation_period_msgs: Option<UInt>,
}

The payload for EncryptionEvent.

Fields

algorithm: Algorithm

The encryption algorithm to be used to encrypt messages sent in this room.

Must be m.megolm.v1.aes-sha2.

rotation_period_ms: Option<UInt>

How long the session should be used before changing it.

604800000 (a week) is the recommended default.

rotation_period_msgs: Option<UInt>

How many messages should be sent before changing the session.

100 is the recommended default.

Trait Implementations

impl Clone for EncryptionEventContent[src]

impl Debug for EncryptionEventContent[src]

impl FromRaw for EncryptionEventContent[src]

type Raw = EncryptionEventContent

The raw type.

impl Serialize for EncryptionEventContent[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> 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>,