Enum matrix_sdk_base::ruma::RoomVersionId
#[non_exhaustive]pub enum RoomVersionId {
V1,
V2,
V3,
V4,
V5,
V6,
V7,
V8,
V9,
V10,
V11,
}
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 (Non-exhaustive)§
This enum is marked as non-exhaustive
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§
§impl AsRef<[u8]> for RoomVersionId
impl AsRef<[u8]> for RoomVersionId
§impl AsRef<str> for RoomVersionId
impl AsRef<str> for RoomVersionId
§impl Clone for RoomVersionId
impl Clone for RoomVersionId
§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 more§impl Debug for RoomVersionId
impl Debug for RoomVersionId
§impl<'de> Deserialize<'de> for RoomVersionId
impl<'de> Deserialize<'de> for RoomVersionId
§fn deserialize<D>(
deserializer: D
) -> Result<RoomVersionId, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<RoomVersionId, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
§impl Display for RoomVersionId
impl Display for RoomVersionId
§impl From<RoomVersionId> for String
impl From<RoomVersionId> for String
§fn from(id: RoomVersionId) -> String
fn from(id: RoomVersionId) -> String
§impl FromStr for RoomVersionId
impl FromStr for RoomVersionId
§impl Hash for RoomVersionId
impl Hash for RoomVersionId
§impl Ord for RoomVersionId
impl Ord for RoomVersionId
§fn cmp(&self, other: &RoomVersionId) -> Ordering
fn cmp(&self, other: &RoomVersionId) -> 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,
§impl PartialEq<&str> for RoomVersionId
impl PartialEq<&str> for RoomVersionId
§impl PartialEq<RoomVersionId> for &str
impl PartialEq<RoomVersionId> for &str
§fn eq(&self, other: &RoomVersionId) -> bool
fn eq(&self, other: &RoomVersionId) -> bool
self
and other
values to be equal, and is used
by ==
.§impl PartialEq<RoomVersionId> for String
impl PartialEq<RoomVersionId> for String
§fn eq(&self, other: &RoomVersionId) -> bool
fn eq(&self, other: &RoomVersionId) -> bool
self
and other
values to be equal, and is used
by ==
.§impl PartialEq<String> for RoomVersionId
impl PartialEq<String> for RoomVersionId
§impl PartialEq for RoomVersionId
impl PartialEq for RoomVersionId
§fn eq(&self, other: &RoomVersionId) -> bool
fn eq(&self, other: &RoomVersionId) -> bool
self
and other
values to be equal, and is used
by ==
.§impl PartialOrd for RoomVersionId
impl PartialOrd for RoomVersionId
§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.
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more§impl Serialize for RoomVersionId
impl Serialize for RoomVersionId
§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,
§impl TryFrom<&str> for RoomVersionId
impl TryFrom<&str> for RoomVersionId
§impl TryFrom<String> for RoomVersionId
impl TryFrom<String> for RoomVersionId
impl Eq for RoomVersionId
impl StructuralEq for RoomVersionId
impl StructuralPartialEq for RoomVersionId
Auto Trait Implementations§
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
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.