#[non_exhaustive]pub struct SpaceHierarchyChildSummary {
pub canonical_alias: Option<OwnedRoomAliasId>,
pub name: Option<String>,
pub num_joined_members: UInt,
pub room_id: OwnedRoomId,
pub topic: Option<String>,
pub world_readable: bool,
pub guest_can_join: bool,
pub avatar_url: Option<OwnedMxcUri>,
pub join_rule: SpaceRoomJoinRule,
pub room_type: Option<RoomType>,
pub allowed_room_ids: Vec<OwnedRoomId>,
}
api
and (crate features federation-api-c
or federation-api-s
) only.Expand description
The summary of a space’s child.
To create an instance of this type, first create a SpaceHierarchyChildSummaryInit
and convert
it via SpaceHierarchyChildSummary::from
/ .into()
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.canonical_alias: Option<OwnedRoomAliasId>
The canonical alias of the room, if any.
If you activate the compat-empty-string-null
feature, this field being an empty string in
JSON will result in None
here during deserialization.
name: Option<String>
The name of the room, if any.
num_joined_members: UInt
The number of members joined to the room.
room_id: OwnedRoomId
The ID of the room.
topic: Option<String>
The topic of the room, if any.
world_readable: bool
Whether the room may be viewed by guest users without joining.
guest_can_join: bool
Whether guest users may join the room and participate in it.
If they can, they will be subject to ordinary power level rules like any other user.
avatar_url: Option<OwnedMxcUri>
The URL for the room’s avatar, if one is set.
If you activate the compat-empty-string-null
feature, this field being an empty string in
JSON will result in None
here during deserialization.
join_rule: SpaceRoomJoinRule
The join rule of the room.
room_type: Option<RoomType>
The type of room from m.room.create
, if any.
allowed_room_ids: Vec<OwnedRoomId>
If the room is a restricted room, these are the room IDs which are specified by the join rules.
Trait Implementations§
Source§impl Clone for SpaceHierarchyChildSummary
impl Clone for SpaceHierarchyChildSummary
Source§fn clone(&self) -> SpaceHierarchyChildSummary
fn clone(&self) -> SpaceHierarchyChildSummary
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more