#[non_exhaustive]pub enum EncryptedEventScheme {
OlmV1Curve25519AesSha2(OlmV1Curve25519AesSha2Content),
MegolmV1AesSha2(MegolmV1AesSha2Content),
}
Expand description
The encryption scheme for RoomEncryptedEventContent
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
OlmV1Curve25519AesSha2(OlmV1Curve25519AesSha2Content)
An event encrypted with m.olm.v1.curve25519-aes-sha2
.
MegolmV1AesSha2(MegolmV1AesSha2Content)
An event encrypted with m.megolm.v1.aes-sha2
.
Trait Implementations§
source§impl Clone for EncryptedEventScheme
impl Clone for EncryptedEventScheme
source§fn clone(&self) -> EncryptedEventScheme
fn clone(&self) -> EncryptedEventScheme
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 EncryptedEventScheme
impl Debug for EncryptedEventScheme
source§impl<'de> Deserialize<'de> for EncryptedEventScheme
impl<'de> Deserialize<'de> for EncryptedEventScheme
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EncryptedEventScheme, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EncryptedEventScheme, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<EncryptedEventScheme> for RoomEncryptedEventContent
impl From<EncryptedEventScheme> for RoomEncryptedEventContent
source§fn from(scheme: EncryptedEventScheme) -> RoomEncryptedEventContent
fn from(scheme: EncryptedEventScheme) -> RoomEncryptedEventContent
Converts to this type from the input type.
source§impl From<EncryptedEventScheme> for ToDeviceRoomEncryptedEventContent
impl From<EncryptedEventScheme> for ToDeviceRoomEncryptedEventContent
source§fn from(scheme: EncryptedEventScheme) -> ToDeviceRoomEncryptedEventContent
fn from(scheme: EncryptedEventScheme) -> ToDeviceRoomEncryptedEventContent
Converts to this type from the input type.
source§impl Serialize for EncryptedEventScheme
impl Serialize for EncryptedEventScheme
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for EncryptedEventScheme
impl RefUnwindSafe for EncryptedEventScheme
impl Send for EncryptedEventScheme
impl Sync for EncryptedEventScheme
impl Unpin for EncryptedEventScheme
impl UnwindSafe for EncryptedEventScheme
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)