#[non_exhaustive]pub struct SessionMembershipData {
pub application: Application,
pub device_id: OwnedDeviceId,
pub foci_preferred: Vec<Focus>,
pub focus_active: ActiveFocus,
pub created_ts: Option<MilliSecondsSinceUnixEpoch>,
}
Expand description
Stores all the information for a MatrixRTC membership. (one for each device)
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.application: Application
The type of the MatrixRTC session the membership belongs to.
e.g. call, spacial, document…
device_id: OwnedDeviceId
The device id of this membership.
The same user can join with their phone/computer.
foci_preferred: Vec<Focus>
A list of the foci that this membership proposes to use.
focus_active: ActiveFocus
Data required to determine the currently used focus by this member.
created_ts: Option<MilliSecondsSinceUnixEpoch>
Stores a copy of the origin_server_ts
of the initial session event.
This is not part of the serialized event and computed after serialization.
Trait Implementations§
source§impl Clone for SessionMembershipData
impl Clone for SessionMembershipData
source§fn clone(&self) -> SessionMembershipData
fn clone(&self) -> SessionMembershipData
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 SessionMembershipData
impl Debug for SessionMembershipData
source§impl<'de> Deserialize<'de> for SessionMembershipData
impl<'de> Deserialize<'de> for SessionMembershipData
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SessionMembershipData, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SessionMembershipData, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for SessionMembershipData
impl PartialEq for SessionMembershipData
source§fn eq(&self, other: &SessionMembershipData) -> bool
fn eq(&self, other: &SessionMembershipData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SessionMembershipData
impl Serialize for SessionMembershipData
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 StructuralPartialEq for SessionMembershipData
Auto Trait Implementations§
impl Freeze for SessionMembershipData
impl RefUnwindSafe for SessionMembershipData
impl Send for SessionMembershipData
impl Sync for SessionMembershipData
impl Unpin for SessionMembershipData
impl UnwindSafe for SessionMembershipData
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
)