pub struct ToDeviceRoomKeyRequestEventContent {
pub action: Action,
pub body: Option<RequestedKeyInfo>,
pub requesting_device_id: OwnedDeviceId,
pub request_id: OwnedTransactionId,
}Available on crate feature
events only.Expand description
The content of an m.room_key_request event.
Fields§
§action: ActionWhether this is a new key request or a cancellation of a previous request.
body: Option<RequestedKeyInfo>Information about the requested key.
Required if action is request.
requesting_device_id: OwnedDeviceIdID of the device requesting the key.
request_id: OwnedTransactionIdA random string uniquely identifying the request for a key.
If the key is requested multiple times, it should be reused. It should also reused in order to cancel a request.
Implementations§
source§impl ToDeviceRoomKeyRequestEventContent
impl ToDeviceRoomKeyRequestEventContent
sourcepub fn new(
action: Action,
body: Option<RequestedKeyInfo>,
requesting_device_id: OwnedDeviceId,
request_id: OwnedTransactionId
) -> Self
pub fn new(
action: Action,
body: Option<RequestedKeyInfo>,
requesting_device_id: OwnedDeviceId,
request_id: OwnedTransactionId
) -> Self
Creates a new ToDeviceRoomKeyRequestEventContent with the given action, boyd, device ID
and request ID.
Trait Implementations§
source§impl Clone for ToDeviceRoomKeyRequestEventContent
impl Clone for ToDeviceRoomKeyRequestEventContent
source§fn clone(&self) -> ToDeviceRoomKeyRequestEventContent
fn clone(&self) -> ToDeviceRoomKeyRequestEventContent
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<'de> Deserialize<'de> for ToDeviceRoomKeyRequestEventContent
impl<'de> Deserialize<'de> for ToDeviceRoomKeyRequestEventContent
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 ToDeviceRoomKeyRequestEventContent
impl EventContent for ToDeviceRoomKeyRequestEventContent
§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<ToDeviceRoomKeyRequestEventContent> for AnyToDeviceEventContent
impl From<ToDeviceRoomKeyRequestEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceRoomKeyRequestEventContent) -> Self
fn from(c: ToDeviceRoomKeyRequestEventContent) -> Self
Converts to this type from the input type.