Enum ruma_common::RoomVersionId
source · pub enum RoomVersionId {
V1,
V2,
V3,
V4,
V5,
V6,
V7,
V8,
V9,
V10,
V11,
// some variants omitted
}
Expand description
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_str(), "1");
Any string consisting of at minimum 1, at maximum 32 unicode codepoints is a room version ID.
Custom room versions or ones that were introduced into the specification after this code was
written are represented by a hidden enum variant. You can still construct them the same, and
check for them using one of RoomVersionId
s PartialEq
implementations or through .as_str()
.
Variants§
V1
A version 1 room.
V2
A version 2 room.
V3
A version 3 room.
V4
A version 4 room.
V5
A version 5 room.
V6
A version 6 room.
V7
A version 7 room.
V8
A version 8 room.
V9
A version 9 room.
V10
A version 10 room.
V11
A version 11 room.
Implementations§
Trait Implementations§
source§impl AsRef<[u8]> for RoomVersionId
impl AsRef<[u8]> for RoomVersionId
source§impl AsRef<str> for RoomVersionId
impl AsRef<str> for RoomVersionId
source§impl Clone for RoomVersionId
impl Clone for RoomVersionId
source§fn clone(&self) -> RoomVersionId
fn clone(&self) -> RoomVersionId
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RoomVersionId
impl Debug for RoomVersionId
source§impl<'de> Deserialize<'de> for RoomVersionId
impl<'de> Deserialize<'de> for RoomVersionId
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>,
source§impl Display for RoomVersionId
impl Display for RoomVersionId
source§impl From<RoomVersionId> for String
impl From<RoomVersionId> for String
source§fn from(id: RoomVersionId) -> Self
fn from(id: RoomVersionId) -> Self
source§impl FromStr for RoomVersionId
impl FromStr for RoomVersionId
source§impl Hash for RoomVersionId
impl Hash for RoomVersionId
source§impl Ord for RoomVersionId
impl Ord for RoomVersionId
source§fn cmp(&self, other: &Self) -> Ordering
fn cmp(&self, other: &Self) -> Ordering
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 RoomVersionId
s or
types containing RoomVersionId
s as BTreeMap
keys.
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq<&str> for RoomVersionId
impl PartialEq<&str> for RoomVersionId
source§impl PartialEq<RoomVersionId> for &str
impl PartialEq<RoomVersionId> for &str
source§impl PartialEq<RoomVersionId> for String
impl PartialEq<RoomVersionId> for String
source§impl PartialEq<String> for RoomVersionId
impl PartialEq<String> for RoomVersionId
source§impl PartialEq for RoomVersionId
impl PartialEq for RoomVersionId
source§impl PartialOrd for RoomVersionId
impl PartialOrd for RoomVersionId
source§fn partial_cmp(&self, other: &RoomVersionId) -> Option<Ordering>
fn partial_cmp(&self, other: &RoomVersionId) -> Option<Ordering>
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 RoomVersionId
s or
types containing RoomVersionId
s as BTreeMap
keys.
source§impl Serialize for RoomVersionId
impl Serialize for RoomVersionId
source§impl TryFrom<&str> for RoomVersionId
impl TryFrom<&str> for RoomVersionId
source§impl TryFrom<String> for RoomVersionId
impl TryFrom<String> for RoomVersionId
impl Eq for RoomVersionId
impl StructuralPartialEq for RoomVersionId
Auto Trait Implementations§
impl Freeze for RoomVersionId
impl RefUnwindSafe for RoomVersionId
impl Send for RoomVersionId
impl Sync for RoomVersionId
impl Unpin for RoomVersionId
impl UnwindSafe for RoomVersionId
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.