Enum ruma_identifiers::EventEncryptionAlgorithm [−][src]
An encryption algorithm to be used to encrypt messages sent to a room.
This type can hold an arbitrary string. To check for algorithms that are not available as a
documented variant here, use its string representation, obtained through .as_str().
Variants (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.
Olm version 1 using Curve25519, AES-256, and SHA-256.
Megolm version 1 using AES-256 and SHA-256.
Trait Implementations
impl AsRef<str> for EventEncryptionAlgorithm[src]
impl Clone for EventEncryptionAlgorithm[src]
fn clone(&self) -> EventEncryptionAlgorithm[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for EventEncryptionAlgorithm[src]
impl<'de> Deserialize<'de> for EventEncryptionAlgorithm[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
    D: Deserializer<'de>, [src]
D: Deserializer<'de>,
impl Display for EventEncryptionAlgorithm[src]
impl Eq for EventEncryptionAlgorithm[src]
impl<T> From<T> for EventEncryptionAlgorithm where
    T: AsRef<str> + Into<String>, [src]
T: AsRef<str> + Into<String>,
impl Ord for EventEncryptionAlgorithm[src]
fn cmp(&self, other: &EventEncryptionAlgorithm) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<EventEncryptionAlgorithm> for EventEncryptionAlgorithm[src]
fn eq(&self, other: &EventEncryptionAlgorithm) -> bool[src]
fn ne(&self, other: &EventEncryptionAlgorithm) -> bool[src]
impl PartialOrd<EventEncryptionAlgorithm> for EventEncryptionAlgorithm[src]
fn partial_cmp(&self, other: &EventEncryptionAlgorithm) -> Option<Ordering>[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl Serialize for EventEncryptionAlgorithm[src]
impl StructuralEq for EventEncryptionAlgorithm[src]
impl StructuralPartialEq for EventEncryptionAlgorithm[src]
Auto Trait Implementations
impl RefUnwindSafe for EventEncryptionAlgorithm
impl Send for EventEncryptionAlgorithm
impl Sync for EventEncryptionAlgorithm
impl Unpin for EventEncryptionAlgorithm
impl UnwindSafe for EventEncryptionAlgorithm
Blanket Implementations
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
    T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
    T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
V: MultiLane<T>,