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,
) -> CallMemberStateKey
pub fn new( user_id: OwnedUserId, device_id: Option<OwnedDeviceId>, underscore: bool, ) -> CallMemberStateKey
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<CallMemberStateKey, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<CallMemberStateKey, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<CallMemberStateKeyEnum> for CallMemberStateKey
impl From<CallMemberStateKeyEnum> for CallMemberStateKey
source§fn from(value: CallMemberStateKeyEnum) -> CallMemberStateKey
fn from(value: CallMemberStateKeyEnum) -> CallMemberStateKey
Converts to this type from the input type.
source§impl FromStr for CallMemberStateKey
impl FromStr for CallMemberStateKey
§type Err = KeyParseError
type Err = KeyParseError
The associated error which can be returned from parsing.
source§fn from_str(
state_key: &str,
) -> Result<CallMemberStateKey, <CallMemberStateKey as FromStr>::Err>
fn from_str( state_key: &str, ) -> Result<CallMemberStateKey, <CallMemberStateKey as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moresource§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§fn eq(&self, other: &CallMemberStateKey) -> bool
fn eq(&self, other: &CallMemberStateKey) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for CallMemberStateKey
impl PartialOrd for CallMemberStateKey
source§fn partial_cmp(&self, other: &CallMemberStateKey) -> Option<Ordering>
fn partial_cmp(&self, other: &CallMemberStateKey) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for CallMemberStateKey
impl Serialize for CallMemberStateKey
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
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§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> 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.