#[non_exhaustive]pub struct RoomPinnedEventsEventContent {
    pub pinned: Vec<OwnedEventId>,
}Available on crate feature 
events only.Expand description
The content of an m.room.pinned_events event.
Used to “pin” particular events in a room for other participants to review later.
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.pinned: Vec<OwnedEventId>An ordered list of event IDs to pin.
Implementations§
Source§impl RoomPinnedEventsEventContent
 
impl RoomPinnedEventsEventContent
Sourcepub fn new(pinned: Vec<OwnedEventId>) -> RoomPinnedEventsEventContent
 
pub fn new(pinned: Vec<OwnedEventId>) -> RoomPinnedEventsEventContent
Creates a new RoomPinnedEventsEventContent with the given events.
Trait Implementations§
Source§impl Clone for RoomPinnedEventsEventContent
 
impl Clone for RoomPinnedEventsEventContent
Source§fn clone(&self) -> RoomPinnedEventsEventContent
 
fn clone(&self) -> RoomPinnedEventsEventContent
Returns a duplicate 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 RoomPinnedEventsEventContent
 
impl Debug for RoomPinnedEventsEventContent
Source§impl<'de> Deserialize<'de> for RoomPinnedEventsEventContent
 
impl<'de> Deserialize<'de> for RoomPinnedEventsEventContent
Source§fn deserialize<__D>(
    __deserializer: __D,
) -> Result<RoomPinnedEventsEventContent, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D,
) -> Result<RoomPinnedEventsEventContent, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<RoomPinnedEventsEventContent> for AnyStateEventContent
 
impl From<RoomPinnedEventsEventContent> for AnyStateEventContent
Source§fn from(c: RoomPinnedEventsEventContent) -> AnyStateEventContent
 
fn from(c: RoomPinnedEventsEventContent) -> AnyStateEventContent
Converts to this type from the input type.
Source§impl RedactContent for RoomPinnedEventsEventContent
 
impl RedactContent for RoomPinnedEventsEventContent
Source§type Redacted = RedactedRoomPinnedEventsEventContent
 
type Redacted = RedactedRoomPinnedEventsEventContent
The redacted form of the event’s content.
Source§fn redact(self, _rules: &RedactionRules) -> RedactedRoomPinnedEventsEventContent
 
fn redact(self, _rules: &RedactionRules) -> RedactedRoomPinnedEventsEventContent
Transform 
self into a redacted form (removing most or all fields) according to the spec. Read moreSource§impl Serialize for RoomPinnedEventsEventContent
 
impl Serialize for RoomPinnedEventsEventContent
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 RoomPinnedEventsEventContent
 
impl StateEventContent for RoomPinnedEventsEventContent
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.Source§impl StaticStateEventContent for RoomPinnedEventsEventContent
 
impl StaticStateEventContent for RoomPinnedEventsEventContent
Source§type PossiblyRedacted = PossiblyRedactedRoomPinnedEventsEventContent
 
type PossiblyRedacted = PossiblyRedactedRoomPinnedEventsEventContent
The possibly redacted form of the event’s content.
Source§type Unsigned = StateUnsigned<<RoomPinnedEventsEventContent as StaticStateEventContent>::PossiblyRedacted>
 
type Unsigned = StateUnsigned<<RoomPinnedEventsEventContent as StaticStateEventContent>::PossiblyRedacted>
The type of the event’s 
unsigned field.impl JsonCastable<AnyStateEventContent> for RoomPinnedEventsEventContent
impl JsonCastable<Map<String, Value>> for RoomPinnedEventsEventContent
impl JsonCastable<PossiblyRedactedRoomPinnedEventsEventContent> for RoomPinnedEventsEventContent
impl JsonCastable<RedactedRoomPinnedEventsEventContent> for RoomPinnedEventsEventContent
Auto Trait Implementations§
impl Freeze for RoomPinnedEventsEventContent
impl RefUnwindSafe for RoomPinnedEventsEventContent
impl Send for RoomPinnedEventsEventContent
impl Sync for RoomPinnedEventsEventContent
impl Unpin for RoomPinnedEventsEventContent
impl UnwindSafe for RoomPinnedEventsEventContent
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