[][src]Struct ruma_events::room_key::RoomKeyEventContent

pub struct RoomKeyEventContent {
    pub algorithm: Algorithm,
    pub room_id: RoomId,
    pub session_id: String,
    pub session_key: String,
}

The payload for RoomKeyEvent.

Fields

algorithm: Algorithm

The encryption algorithm the key in this event is to be used with.

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

room_id: RoomId

The room where the key is used.

session_id: String

The ID of the session that the key is for.

session_key: String

The key to be exchanged.

Trait Implementations

impl Clone for RoomKeyEventContent[src]

impl Debug for RoomKeyEventContent[src]

impl FromRaw for RoomKeyEventContent[src]

type Raw = RoomKeyEventContent

The raw type.

impl PartialEq<RoomKeyEventContent> for RoomKeyEventContent[src]

impl Serialize for RoomKeyEventContent[src]

impl StructuralPartialEq for RoomKeyEventContent[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>,