#[non_exhaustive]pub struct PossiblyRedactedRoomTopicEventContent {
pub topic: Option<String>,
pub topic_block: TextContentBlock,
}
Expand description
The possibly redacted form of RoomTopicEventContent
.
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.topic: Option<String>
The topic as plain text.
If the unstable-msc3765
cargo feature is enabled, this SHOULD duplicate the content of
the text/plain
representation in topic_block
if any exists.
topic_block: TextContentBlock
Textual representation of the room topic in different mimetypes (MSC3765).
Uses the unstable prefix org.matrix.msc3765.topic
.
Trait Implementations§
Source§impl Clone for PossiblyRedactedRoomTopicEventContent
impl Clone for PossiblyRedactedRoomTopicEventContent
Source§fn clone(&self) -> PossiblyRedactedRoomTopicEventContent
fn clone(&self) -> PossiblyRedactedRoomTopicEventContent
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<'de> Deserialize<'de> for PossiblyRedactedRoomTopicEventContent
impl<'de> Deserialize<'de> for PossiblyRedactedRoomTopicEventContent
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 PossiblyRedactedStateEventContent for PossiblyRedactedRoomTopicEventContent
impl PossiblyRedactedStateEventContent for PossiblyRedactedRoomTopicEventContent
Source§type StateKey = EmptyStateKey
type StateKey = EmptyStateKey
The type of the event’s
state_key
field.Source§fn event_type(&self) -> StateEventType
fn event_type(&self) -> StateEventType
Get the event’s type, like
m.room.name
.Auto Trait Implementations§
impl Freeze for PossiblyRedactedRoomTopicEventContent
impl RefUnwindSafe for PossiblyRedactedRoomTopicEventContent
impl Send for PossiblyRedactedRoomTopicEventContent
impl Sync for PossiblyRedactedRoomTopicEventContent
impl Unpin for PossiblyRedactedRoomTopicEventContent
impl UnwindSafe for PossiblyRedactedRoomTopicEventContent
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