pub struct ToDeviceRoomEncryptedEventContent {
pub scheme: EncryptedEventScheme,
}Available on crate feature
events only.Expand description
The to-device content of an m.room.encrypted event.
Fields§
§scheme: EncryptedEventSchemeAlgorithm-specific fields.
Implementations§
source§impl ToDeviceRoomEncryptedEventContent
impl ToDeviceRoomEncryptedEventContent
sourcepub fn new(scheme: EncryptedEventScheme) -> Self
pub fn new(scheme: EncryptedEventScheme) -> Self
Creates a new ToDeviceRoomEncryptedEventContent with the given scheme.
Trait Implementations§
source§impl Clone for ToDeviceRoomEncryptedEventContent
impl Clone for ToDeviceRoomEncryptedEventContent
source§fn clone(&self) -> ToDeviceRoomEncryptedEventContent
fn clone(&self) -> ToDeviceRoomEncryptedEventContent
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 ToDeviceRoomEncryptedEventContent
impl<'de> Deserialize<'de> for ToDeviceRoomEncryptedEventContent
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 ToDeviceRoomEncryptedEventContent
impl EventContent for ToDeviceRoomEncryptedEventContent
§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<EncryptedEventScheme> for ToDeviceRoomEncryptedEventContent
impl From<EncryptedEventScheme> for ToDeviceRoomEncryptedEventContent
source§fn from(scheme: EncryptedEventScheme) -> Self
fn from(scheme: EncryptedEventScheme) -> Self
Converts to this type from the input type.
source§impl From<ToDeviceRoomEncryptedEventContent> for AnyToDeviceEventContent
impl From<ToDeviceRoomEncryptedEventContent> for AnyToDeviceEventContent
source§fn from(c: ToDeviceRoomEncryptedEventContent) -> Self
fn from(c: ToDeviceRoomEncryptedEventContent) -> Self
Converts to this type from the input type.