pub type PossiblyRedactedRoomCanonicalAliasEventContent = RoomCanonicalAliasEventContent;
Expand description
The possibly redacted form of RoomCanonicalAliasEventContent
.
This type is used when it’s not obvious whether the content is redacted or not.
Aliased Type§
struct PossiblyRedactedRoomCanonicalAliasEventContent {
pub alias: Option<OwnedRoomAliasId>,
pub alt_aliases: Vec<OwnedRoomAliasId>,
}
Fields§
§alias: Option<OwnedRoomAliasId>
The canonical alias.
Rooms with alias: None
should be treated the same as a room
with no canonical alias.
alt_aliases: Vec<OwnedRoomAliasId>
List of alternative aliases to the room.
Implementations
Trait Implementations
Source§impl Clone for RoomCanonicalAliasEventContent
impl Clone for RoomCanonicalAliasEventContent
Source§fn clone(&self) -> RoomCanonicalAliasEventContent
fn clone(&self) -> RoomCanonicalAliasEventContent
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 Default for RoomCanonicalAliasEventContent
impl Default for RoomCanonicalAliasEventContent
Source§fn default() -> RoomCanonicalAliasEventContent
fn default() -> RoomCanonicalAliasEventContent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RoomCanonicalAliasEventContent
impl<'de> Deserialize<'de> for RoomCanonicalAliasEventContent
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 EventContent for RoomCanonicalAliasEventContent
impl EventContent for RoomCanonicalAliasEventContent
Source§type EventType = StateEventType
type EventType = StateEventType
The Rust enum for the event kind’s known types.
Source§fn event_type(&self) -> Self::EventType
fn event_type(&self) -> Self::EventType
Get the event’s type, like
m.room.message
.Source§impl PossiblyRedactedStateEventContent for RoomCanonicalAliasEventContent
impl PossiblyRedactedStateEventContent for RoomCanonicalAliasEventContent
Source§type StateKey = EmptyStateKey
type StateKey = EmptyStateKey
The type of the event’s
state_key
field.Source§impl RedactContent for RoomCanonicalAliasEventContent
impl RedactContent for RoomCanonicalAliasEventContent
Source§type Redacted = RedactedRoomCanonicalAliasEventContent
type Redacted = RedactedRoomCanonicalAliasEventContent
The redacted form of the event’s content.
Source§fn redact(
self,
version: &RoomVersionId,
) -> RedactedRoomCanonicalAliasEventContent
fn redact( self, version: &RoomVersionId, ) -> RedactedRoomCanonicalAliasEventContent
Transform
self
into a redacted form (removing most or all fields) according to the spec. Read moreSource§impl StateEventContent for RoomCanonicalAliasEventContent
impl StateEventContent for RoomCanonicalAliasEventContent
Source§type StateKey = EmptyStateKey
type StateKey = EmptyStateKey
The type of the event’s
state_key
field.Source§impl StaticStateEventContent for RoomCanonicalAliasEventContent
impl StaticStateEventContent for RoomCanonicalAliasEventContent
Source§type PossiblyRedacted = RoomCanonicalAliasEventContent
type PossiblyRedacted = RoomCanonicalAliasEventContent
The possibly redacted form of the event’s content.
Source§type Unsigned = StateUnsigned<<RoomCanonicalAliasEventContent as StaticStateEventContent>::PossiblyRedacted>
type Unsigned = StateUnsigned<<RoomCanonicalAliasEventContent as StaticStateEventContent>::PossiblyRedacted>
The type of the event’s
unsigned
field.