#[non_exhaustive]pub struct PossiblyRedactedCallMemberEventContent {
pub memberships: Option<Vec<Membership>>,
}
Available on crate feature
unstable-msc3401
only.Expand description
The possibly redacted form of CallMemberEventContent
.
This type is used when it’s not obvious whether the content is redacted or not.
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.memberships: Option<Vec<Membership>>
A list of all the memberships that user currently has in this room.
There can be multiple ones in cases the user participates with multiple devices or there are multiple RTC applications running.
e.g. a call and a spacial experience.
Important: This includes expired memberships.
To retrieve a list including only valid memberships,
see active_memberships
.
Trait Implementations§
§impl Clone for PossiblyRedactedCallMemberEventContent
impl Clone for PossiblyRedactedCallMemberEventContent
§fn clone(&self) -> PossiblyRedactedCallMemberEventContent
fn clone(&self) -> PossiblyRedactedCallMemberEventContent
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 more§impl<'de> Deserialize<'de> for PossiblyRedactedCallMemberEventContent
impl<'de> Deserialize<'de> for PossiblyRedactedCallMemberEventContent
§fn deserialize<__D>(
__deserializer: __D
) -> Result<PossiblyRedactedCallMemberEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<PossiblyRedactedCallMemberEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl EventContent for PossiblyRedactedCallMemberEventContent
impl EventContent for PossiblyRedactedCallMemberEventContent
§type EventType = StateEventType
type EventType = StateEventType
The Rust enum for the event kind’s known types.
§fn event_type(
&self
) -> <PossiblyRedactedCallMemberEventContent as EventContent>::EventType
fn event_type( &self ) -> <PossiblyRedactedCallMemberEventContent as EventContent>::EventType
Get the event’s type, like
m.room.message
.§impl PossiblyRedactedStateEventContent for PossiblyRedactedCallMemberEventContent
impl PossiblyRedactedStateEventContent for PossiblyRedactedCallMemberEventContent
§type StateKey = OwnedUserId
type StateKey = OwnedUserId
The type of the event’s
state_key
field.§impl Serialize for PossiblyRedactedCallMemberEventContent
impl Serialize for PossiblyRedactedCallMemberEventContent
§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
Auto Trait Implementations§
impl RefUnwindSafe for PossiblyRedactedCallMemberEventContent
impl Send for PossiblyRedactedCallMemberEventContent
impl Sync for PossiblyRedactedCallMemberEventContent
impl Unpin for PossiblyRedactedCallMemberEventContent
impl UnwindSafe for PossiblyRedactedCallMemberEventContent
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