[][src]Enum ruma_identifiers::RoomVersionId

#[non_exhaustive]pub enum RoomVersionId {
    Version1,
    Version2,
    Version3,
    Version4,
    Version5,
    Version6,
    Custom(CustomRoomVersion),
}

A Matrix room version ID.

A RoomVersionId can be or converted or deserialized from a string slice, and can be converted or serialized back into a string as needed.

assert_eq!(RoomVersionId::try_from("1").unwrap().as_ref(), "1");

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.
Version1

A version 1 room.

Version2

A version 2 room.

Version3

A version 3 room.

Version4

A version 4 room.

Version5

A version 5 room.

Version6

A version 6 room.

Custom(CustomRoomVersion)

A custom room version.

Implementations

impl RoomVersionId[src]

pub fn version_1() -> Self[src]

👎 Deprecated:

use RoomVersionId::Version1 instead

Creates a version 1 room ID.

pub fn version_2() -> Self[src]

👎 Deprecated:

use RoomVersionId::Version2 instead

Creates a version 2 room ID.

pub fn version_3() -> Self[src]

👎 Deprecated:

use RoomVersionId::Version3 instead

Creates a version 3 room ID.

pub fn version_4() -> Self[src]

👎 Deprecated:

use RoomVersionId::Version4 instead

Creates a version 4 room ID.

pub fn version_5() -> Self[src]

👎 Deprecated:

use RoomVersionId::Version5 instead

Creates a version 5 room ID.

pub fn version_6() -> Self[src]

👎 Deprecated:

use RoomVersionId::Version6 instead

Creates a version 6 room ID.

pub fn as_str(&self) -> &str[src]

Creates a string slice from this RoomVersionId.

pub fn as_bytes(&self) -> &[u8][src]

Creates a byte slice from this RoomVersionId.

pub fn is_official(&self) -> bool[src]

Whether or not this room version is an official one specified by the Matrix protocol.

pub fn is_custom(&self) -> bool[src]

Whether or not this is a custom room version.

pub fn is_version_1(&self) -> bool[src]

👎 Deprecated:

compare to RoomVersionId::Version1 instead

Whether or not this is a version 1 room.

pub fn is_version_2(&self) -> bool[src]

👎 Deprecated:

compare to RoomVersionId::Version2 instead

Whether or not this is a version 2 room.

pub fn is_version_3(&self) -> bool[src]

👎 Deprecated:

compare to RoomVersionId::Version3 instead

Whether or not this is a version 3 room.

pub fn is_version_4(&self) -> bool[src]

👎 Deprecated:

compare to RoomVersionId::Version4 instead

Whether or not this is a version 4 room.

pub fn is_version_5(&self) -> bool[src]

👎 Deprecated:

compare to RoomVersionId::Version5 instead

Whether or not this is a version 5 room.

pub fn is_version_6(&self) -> bool[src]

👎 Deprecated:

compare to RoomVersionId::Version6 instead

Whether or not this is a version 6 room.

Trait Implementations

impl AsRef<str> for RoomVersionId[src]

impl Clone for RoomVersionId[src]

impl Debug for RoomVersionId[src]

impl<'de> Deserialize<'de> for RoomVersionId[src]

impl Display for RoomVersionId[src]

impl Eq for RoomVersionId[src]

impl From<RoomVersionId> for String[src]

impl Hash for RoomVersionId[src]

impl Ord for RoomVersionId[src]

fn cmp(&self, other: &Self) -> Ordering[src]

Compare the two given room version IDs by comparing their string representations.

Please be aware that room version IDs don't have a defined ordering in the Matrix specification. This implementation only exists to be able to use RoomVersionIds or types containing RoomVersionIds as BTreeMap keys.

impl<'_> PartialEq<&'_ str> for RoomVersionId[src]

impl PartialEq<RoomVersionId> for RoomVersionId[src]

impl<'_> PartialEq<RoomVersionId> for &'_ str[src]

impl PartialEq<RoomVersionId> for String[src]

impl PartialEq<String> for RoomVersionId[src]

impl PartialOrd<RoomVersionId> for RoomVersionId[src]

fn partial_cmp(&self, other: &RoomVersionId) -> Option<Ordering>[src]

Compare the two given room version IDs by comparing their string representations.

Please be aware that room version IDs don't have a defined ordering in the Matrix specification. This implementation only exists to be able to use RoomVersionIds or types containing RoomVersionIds as BTreeMap keys.

impl Serialize for RoomVersionId[src]

impl StructuralEq for RoomVersionId[src]

impl StructuralPartialEq for RoomVersionId[src]

impl<'_> TryFrom<&'_ str> for RoomVersionId[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<String> for RoomVersionId[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,