Struct ruma_events::room_key::ToDeviceRoomKeyEventContent
source · pub struct ToDeviceRoomKeyEventContent {
pub algorithm: EventEncryptionAlgorithm,
pub room_id: OwnedRoomId,
pub session_id: String,
pub session_key: String,
pub shared_history: bool,
}
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§
§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.
Used to mark key if allowed for shared history.
Defaults to false
.
Implementations§
source§impl 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§
source§impl Clone for ToDeviceRoomKeyEventContent
impl Clone for ToDeviceRoomKeyEventContent
source§fn clone(&self) -> ToDeviceRoomKeyEventContent
fn clone(&self) -> ToDeviceRoomKeyEventContent
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 moresource§impl Debug for ToDeviceRoomKeyEventContent
impl Debug for ToDeviceRoomKeyEventContent
source§impl<'de> Deserialize<'de> for ToDeviceRoomKeyEventContent
impl<'de> Deserialize<'de> for ToDeviceRoomKeyEventContent
source§fn 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
source§impl EventContent for ToDeviceRoomKeyEventContent
impl EventContent for ToDeviceRoomKeyEventContent
source§type EventType = ToDeviceEventType
type EventType = ToDeviceEventType
The Rust enum for the event kind’s known types.
source§fn event_type(&self) -> Self::EventType
fn event_type(&self) -> Self::EventType
Get the event’s type, like
m.room.message
.source§impl From<ToDeviceRoomKeyEventContent> for AnyToDeviceEventContent
impl From<ToDeviceRoomKeyEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceRoomKeyEventContent) -> Self
fn from(c: ToDeviceRoomKeyEventContent) -> Self
Converts to this type from the input type.
impl ToDeviceEventContent for ToDeviceRoomKeyEventContent
Auto Trait Implementations§
impl Freeze for ToDeviceRoomKeyEventContent
impl RefUnwindSafe for ToDeviceRoomKeyEventContent
impl Send for ToDeviceRoomKeyEventContent
impl Sync for ToDeviceRoomKeyEventContent
impl Unpin for ToDeviceRoomKeyEventContent
impl UnwindSafe for ToDeviceRoomKeyEventContent
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)