Struct ruma_common::events::room_key::ToDeviceRoomKeyEventContent
source · [−]#[non_exhaustive]pub struct ToDeviceRoomKeyEventContent {
pub algorithm: EventEncryptionAlgorithm,
pub room_id: OwnedRoomId,
pub session_id: String,
pub session_key: String,
}
Expand description
The content of an m.room_key
event.
Typically encrypted as an m.room.encrypted
event, then sent as a to-device event.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.algorithm: EventEncryptionAlgorithm
The encryption algorithm the key in this event is to be used with.
Must be m.megolm.v1.aes-sha2
.
room_id: OwnedRoomId
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.
Implementations
sourceimpl ToDeviceRoomKeyEventContent
impl ToDeviceRoomKeyEventContent
sourcepub fn new(
algorithm: EventEncryptionAlgorithm,
room_id: OwnedRoomId,
session_id: String,
session_key: String
) -> Self
pub fn new(
algorithm: EventEncryptionAlgorithm,
room_id: OwnedRoomId,
session_id: String,
session_key: String
) -> Self
Creates a new ToDeviceRoomKeyEventContent
with the given algorithm, room ID, session ID
and session key.
Trait Implementations
sourceimpl Clone for ToDeviceRoomKeyEventContent
impl Clone for ToDeviceRoomKeyEventContent
sourcefn clone(&self) -> ToDeviceRoomKeyEventContent
fn clone(&self) -> ToDeviceRoomKeyEventContent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ToDeviceRoomKeyEventContent
impl Debug for ToDeviceRoomKeyEventContent
sourceimpl<'de> Deserialize<'de> for ToDeviceRoomKeyEventContent
impl<'de> Deserialize<'de> for ToDeviceRoomKeyEventContent
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl EventContent for ToDeviceRoomKeyEventContent
impl EventContent for ToDeviceRoomKeyEventContent
type EventType = ToDeviceEventType
type EventType = ToDeviceEventType
The Rust enum for the event kind’s known types.
sourcefn event_type(&self) -> Self::EventType
fn event_type(&self) -> Self::EventType
Get the event’s type, like m.room.message
.
sourceimpl From<ToDeviceRoomKeyEventContent> for AnyToDeviceEventContent
impl From<ToDeviceRoomKeyEventContent> for AnyToDeviceEventContent
sourcefn from(c: ToDeviceRoomKeyEventContent) -> Self
fn from(c: ToDeviceRoomKeyEventContent) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for ToDeviceRoomKeyEventContent
impl Send for ToDeviceRoomKeyEventContent
impl Sync for ToDeviceRoomKeyEventContent
impl Unpin for ToDeviceRoomKeyEventContent
impl UnwindSafe for ToDeviceRoomKeyEventContent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more