Enum ruma_events::call::member::MembershipData

source ·
pub enum MembershipData<'a> {
    Legacy(&'a LegacyMembershipData),
    Session(&'a SessionMembershipData),
}
Expand description

The data object that contains the information for one membership.

It can be a legacy or a normal MatrixRTC Session membership.

The legacy format contains time information to compute if it is expired or not. SessionMembershipData does not have the concept of timestamp based expiration anymore. The state event will reliably be set to empty when the user disconnects.

Variants§

§

Legacy(&'a LegacyMembershipData)

The legacy format (using an array of memberships for each device -> one event per user)

§

Session(&'a SessionMembershipData)

One event per device. SessionMembershipData contains all the information required to represent the current membership state of one device.

Implementations§

source§

impl<'a> MembershipData<'a>

source

pub fn application(&self) -> &Application

The application this RTC membership participates in (the session type, can be m.call…)

source

pub fn device_id(&self) -> &String

The device id of this membership.

source

pub fn focus_active(&self) -> &ActiveFocus

The active focus is a FocusType specific object that describes how this user is currently connected.

It can use the foci_preferred list to choose one of the available (preferred) foci or specific information on how to connect to this user.

Every user needs to converge to use the same focus_active type.

source

pub fn foci_preferred(&self) -> &Vec<Focus>

The list of available/preferred options this user provides to connect to the call.

source

pub fn is_room_call(&self) -> bool

The application of the membership is “m.call” and the scope is “m.room”.

source

pub fn is_call(&self) -> bool

The application of the membership is “m.call”.

source

pub fn is_expired( &self, origin_server_ts: Option<MilliSecondsSinceUnixEpoch>, ) -> bool

Checks if the event is expired. This is only relevant for LegacyMembershipData returns false if its SessionMembershipData

source

pub fn created_ts(&self) -> Option<MilliSecondsSinceUnixEpoch>

Gets the created_ts of the event.

This is the origin_server_ts for session data. For legacy events this can either be the origin server ts or a copy from the origin_server_ts since we expect legacy events to get updated (when a new device joins/leaves).

Trait Implementations§

source§

impl<'a> Clone for MembershipData<'a>

source§

fn clone(&self) -> MembershipData<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for MembershipData<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for MembershipData<'a>

§

impl<'a> RefUnwindSafe for MembershipData<'a>

§

impl<'a> Send for MembershipData<'a>

§

impl<'a> Sync for MembershipData<'a>

§

impl<'a> Unpin for MembershipData<'a>

§

impl<'a> UnwindSafe for MembershipData<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, W> HasTypeWitness<W> for T
where W: MakeTypeWitness<Arg = T>, T: ?Sized,

source§

const WITNESS: W = W::MAKE

A constant of the type witness
source§

impl<T> Identity for T
where T: ?Sized,

source§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
source§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more