Enum ruma::VoipVersionId
source · #[non_exhaustive]pub enum VoipVersionId {
V0,
V1,
}
Expand description
A Matrix VoIP version ID.
A VoipVersionId
representing VoIP version 0 can be converted or deserialized from a UInt
,
and can be converted or serialized back into a UInt
as needed.
Custom room versions or ones that were introduced into the specification after this code was written are represented by a hidden enum variant. They can be converted or deserialized from a string slice, and can be converted or serialized back into a string as needed.
assert_eq!(VoipVersionId::try_from("1").unwrap().as_ref(), "1");
For simplicity, version 0 has a string representation, but trying to construct a VoipVersionId
from a "0"
string will not result in the V0
variant.
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.
Implementations§
Trait Implementations§
source§impl AsRef<str> for VoipVersionId
impl AsRef<str> for VoipVersionId
source§impl Clone for VoipVersionId
impl Clone for VoipVersionId
source§fn clone(&self) -> VoipVersionId
fn clone(&self) -> VoipVersionId
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 VoipVersionId
impl Debug for VoipVersionId
source§impl<'de> Deserialize<'de> for VoipVersionId
impl<'de> Deserialize<'de> for VoipVersionId
source§fn deserialize<D>(
deserializer: D,
) -> Result<VoipVersionId, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<VoipVersionId, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for VoipVersionId
impl Display for VoipVersionId
source§impl From<&str> for VoipVersionId
impl From<&str> for VoipVersionId
source§fn from(s: &str) -> VoipVersionId
fn from(s: &str) -> VoipVersionId
Converts to this type from the input type.
source§impl From<String> for VoipVersionId
impl From<String> for VoipVersionId
source§fn from(s: String) -> VoipVersionId
fn from(s: String) -> VoipVersionId
Converts to this type from the input type.
source§impl From<VoipVersionId> for String
impl From<VoipVersionId> for String
source§fn from(id: VoipVersionId) -> String
fn from(id: VoipVersionId) -> String
Converts to this type from the input type.
source§impl Hash for VoipVersionId
impl Hash for VoipVersionId
source§impl PartialEq for VoipVersionId
impl PartialEq for VoipVersionId
source§fn eq(&self, other: &VoipVersionId) -> bool
fn eq(&self, other: &VoipVersionId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for VoipVersionId
impl Serialize for VoipVersionId
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
source§impl TryFrom<UInt> for VoipVersionId
impl TryFrom<UInt> for VoipVersionId
impl Eq for VoipVersionId
impl StructuralPartialEq for VoipVersionId
Auto Trait Implementations§
impl Freeze for VoipVersionId
impl RefUnwindSafe for VoipVersionId
impl Send for VoipVersionId
impl Sync for VoipVersionId
impl Unpin for VoipVersionId
impl UnwindSafe for VoipVersionId
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
)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
Compare self to
key
and return true
if they are equal.