Struct ruma_events::space::child::SpaceChildEventContent
source · pub struct SpaceChildEventContent {
pub via: Vec<OwnedServerName>,
pub order: Option<String>,
pub suggested: bool,
}
Expand description
The content of an m.space.child
event.
The admins of a space can advertise rooms and subspaces for their space by setting
m.space.child
state events.
The state_key
is the ID of a child room or space, and the content must contain a via
key
which gives a list of candidate servers that can be used to join the room.
Fields§
§via: Vec<OwnedServerName>
List of candidate servers that can be used to join the room.
order: Option<String>
Provide a default ordering of siblings in the room list.
Rooms are sorted based on a lexicographic ordering of the Unicode codepoints of the
characters in order
values. Rooms with no order
come last, in ascending numeric order
of the origin_server_ts of their m.room.create events, or ascending lexicographic order of
their room_ids in case of equal origin_server_ts
. order
s which are not strings, or do
not consist solely of ascii characters in the range \x20
(space) to \x7E
(~
), or
consist of more than 50 characters, are forbidden and the field should be ignored if
received.
suggested: bool
Space admins can mark particular children of a space as “suggested”.
This mainly serves as a hint to clients that that they can be displayed differently, for
example by showing them eagerly in the room list. A child which is missing the suggested
property is treated identically to a child with "suggested": false
. A suggested child may
be a room or a subspace.
Defaults to false
.
Implementations§
source§impl SpaceChildEventContent
impl SpaceChildEventContent
sourcepub fn new(via: Vec<OwnedServerName>) -> Self
pub fn new(via: Vec<OwnedServerName>) -> Self
Creates a new SpaceChildEventContent
with the given routing servers.
Trait Implementations§
source§impl Clone for SpaceChildEventContent
impl Clone for SpaceChildEventContent
source§fn clone(&self) -> SpaceChildEventContent
fn clone(&self) -> SpaceChildEventContent
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SpaceChildEventContent
impl Debug for SpaceChildEventContent
source§impl<'de> Deserialize<'de> for SpaceChildEventContent
impl<'de> Deserialize<'de> for SpaceChildEventContent
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>,
source§impl EventContent for SpaceChildEventContent
impl EventContent for SpaceChildEventContent
source§type EventType = StateEventType
type EventType = StateEventType
source§fn event_type(&self) -> Self::EventType
fn event_type(&self) -> Self::EventType
m.room.message
.source§impl From<SpaceChildEventContent> for AnyStateEventContent
impl From<SpaceChildEventContent> for AnyStateEventContent
source§fn from(c: SpaceChildEventContent) -> Self
fn from(c: SpaceChildEventContent) -> Self
source§impl RedactContent for SpaceChildEventContent
impl RedactContent for SpaceChildEventContent
source§type Redacted = RedactedSpaceChildEventContent
type Redacted = RedactedSpaceChildEventContent
source§fn redact(self, version: &RoomVersionId) -> RedactedSpaceChildEventContent
fn redact(self, version: &RoomVersionId) -> RedactedSpaceChildEventContent
self
into a redacted form (removing most or all fields) according to the spec. Read moresource§impl Serialize for SpaceChildEventContent
impl Serialize for SpaceChildEventContent
source§impl StateEventContent for SpaceChildEventContent
impl StateEventContent for SpaceChildEventContent
source§type StateKey = OwnedRoomId
type StateKey = OwnedRoomId
state_key
field.source§impl StaticStateEventContent for SpaceChildEventContent
impl StaticStateEventContent for SpaceChildEventContent
source§type PossiblyRedacted = PossiblyRedactedSpaceChildEventContent
type PossiblyRedacted = PossiblyRedactedSpaceChildEventContent
source§type Unsigned = StateUnsigned<<SpaceChildEventContent as StaticStateEventContent>::PossiblyRedacted>
type Unsigned = StateUnsigned<<SpaceChildEventContent as StaticStateEventContent>::PossiblyRedacted>
unsigned
field.Auto Trait Implementations§
impl Freeze for SpaceChildEventContent
impl RefUnwindSafe for SpaceChildEventContent
impl Send for SpaceChildEventContent
impl Sync for SpaceChildEventContent
impl Unpin for SpaceChildEventContent
impl UnwindSafe for SpaceChildEventContent
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)