Enum ruma_common::VoipVersionId
source · pub enum VoipVersionId {
V0,
V1,
// some variants omitted
}
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§
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<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::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§impl From<String> for VoipVersionId
impl From<String> for VoipVersionId
source§impl From<VoipVersionId> for String
impl From<VoipVersionId> for String
source§fn from(id: VoipVersionId) -> Self
fn from(id: VoipVersionId) -> Self
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§impl Serialize for VoipVersionId
impl Serialize for VoipVersionId
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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.