Struct ruma_events::call::member::CallMemberStateKey
source · pub struct CallMemberStateKey { /* private fields */ }
Expand description
A type that can be used as the state_key
for call member state events.
Those state keys can be a combination of UserId and DeviceId.
Implementations§
source§impl CallMemberStateKey
impl CallMemberStateKey
sourcepub fn new(
user_id: OwnedUserId,
device_id: Option<OwnedDeviceId>,
underscore: bool,
) -> Self
pub fn new( user_id: OwnedUserId, device_id: Option<OwnedDeviceId>, underscore: bool, ) -> Self
Constructs a new CallMemberStateKey there are three possible formats:
_{UserId}_{DeviceId}
example:_@test:user.org_DEVICE
.device_id: Some
,underscore: true
{UserId}_{DeviceId}
example:@test:user.org_DEVICE
.device_id: Some
,underscore: false
{UserId}
example:@test:user.org
.device_id: None
, underscore is ignored:underscore: false|true
Dependent on the parameters the correct CallMemberStateKey will be constructed.
Trait Implementations§
source§impl AsRef<str> for CallMemberStateKey
impl AsRef<str> for CallMemberStateKey
source§impl Clone for CallMemberStateKey
impl Clone for CallMemberStateKey
source§fn clone(&self) -> CallMemberStateKey
fn clone(&self) -> CallMemberStateKey
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 CallMemberStateKey
impl Debug for CallMemberStateKey
source§impl<'de> Deserialize<'de> for CallMemberStateKey
impl<'de> Deserialize<'de> for CallMemberStateKey
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 FromStr for CallMemberStateKey
impl FromStr for CallMemberStateKey
source§impl Ord for CallMemberStateKey
impl Ord for CallMemberStateKey
source§fn cmp(&self, other: &CallMemberStateKey) -> Ordering
fn cmp(&self, other: &CallMemberStateKey) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for CallMemberStateKey
impl PartialEq for CallMemberStateKey
source§impl PartialOrd for CallMemberStateKey
impl PartialOrd for CallMemberStateKey
source§impl Serialize for CallMemberStateKey
impl Serialize for CallMemberStateKey
impl Eq for CallMemberStateKey
impl StructuralPartialEq for CallMemberStateKey
Auto Trait Implementations§
impl Freeze for CallMemberStateKey
impl RefUnwindSafe for CallMemberStateKey
impl Send for CallMemberStateKey
impl Sync for CallMemberStateKey
impl Unpin for CallMemberStateKey
impl UnwindSafe for CallMemberStateKey
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> 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
Compare self to
key
and return true
if they are equal.