pub type PossiblyRedactedRoomAvatarEventContent = RoomAvatarEventContent;
Available on crate feature
events
only.Expand description
The possibly redacted form of RoomAvatarEventContent
.
This type is used when it’s not obvious whether the content is redacted or not.
Aliased Type§
struct PossiblyRedactedRoomAvatarEventContent {
pub info: Option<Box<ImageInfo>>,
pub url: Option<OwnedMxcUri>,
}
Fields§
§info: Option<Box<ImageInfo>>
Information about the avatar image.
url: Option<OwnedMxcUri>
URL of the avatar image.
Implementations
Source§impl RoomAvatarEventContent
impl RoomAvatarEventContent
Sourcepub fn new() -> RoomAvatarEventContent
pub fn new() -> RoomAvatarEventContent
Create an empty RoomAvatarEventContent
.
Trait Implementations
Source§impl Clone for RoomAvatarEventContent
impl Clone for RoomAvatarEventContent
Source§fn clone(&self) -> RoomAvatarEventContent
fn clone(&self) -> RoomAvatarEventContent
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 RoomAvatarEventContent
impl Debug for RoomAvatarEventContent
Source§impl Default for RoomAvatarEventContent
impl Default for RoomAvatarEventContent
Source§fn default() -> RoomAvatarEventContent
fn default() -> RoomAvatarEventContent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RoomAvatarEventContent
impl<'de> Deserialize<'de> for RoomAvatarEventContent
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RoomAvatarEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RoomAvatarEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl EventContent for RoomAvatarEventContent
impl EventContent for RoomAvatarEventContent
Source§type EventType = StateEventType
type EventType = StateEventType
The Rust enum for the event kind’s known types.
Source§fn event_type(&self) -> <RoomAvatarEventContent as EventContent>::EventType
fn event_type(&self) -> <RoomAvatarEventContent as EventContent>::EventType
Get the event’s type, like
m.room.message
.Source§impl PossiblyRedactedStateEventContent for RoomAvatarEventContent
impl PossiblyRedactedStateEventContent for RoomAvatarEventContent
Source§type StateKey = EmptyStateKey
type StateKey = EmptyStateKey
The type of the event’s
state_key
field.Source§impl RedactContent for RoomAvatarEventContent
impl RedactContent for RoomAvatarEventContent
Source§type Redacted = RedactedRoomAvatarEventContent
type Redacted = RedactedRoomAvatarEventContent
The redacted form of the event’s content.
Source§fn redact(self, _rules: &RedactionRules) -> RedactedRoomAvatarEventContent
fn redact(self, _rules: &RedactionRules) -> RedactedRoomAvatarEventContent
Transform
self
into a redacted form (removing most or all fields) according to the spec. Read moreSource§impl Serialize for RoomAvatarEventContent
impl Serialize for RoomAvatarEventContent
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
Source§impl StateEventContent for RoomAvatarEventContent
impl StateEventContent for RoomAvatarEventContent
Source§type StateKey = EmptyStateKey
type StateKey = EmptyStateKey
The type of the event’s
state_key
field.Source§impl StaticStateEventContent for RoomAvatarEventContent
impl StaticStateEventContent for RoomAvatarEventContent
Source§type PossiblyRedacted = RoomAvatarEventContent
type PossiblyRedacted = RoomAvatarEventContent
The possibly redacted form of the event’s content.
Source§type Unsigned = StateUnsigned<<RoomAvatarEventContent as StaticStateEventContent>::PossiblyRedacted>
type Unsigned = StateUnsigned<<RoomAvatarEventContent as StaticStateEventContent>::PossiblyRedacted>
The type of the event’s
unsigned
field.