logo
pub struct SpaceHierarchyRoomsChunk {
    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 children_state: Vec<Raw<HierarchySpaceChildEvent>, Global>,
}
Available on (crate features client-api-c or client-api-s) and (crate features client or server) and crate feature api only.
Expand description

A chunk of a space hierarchy response, describing one room.

To create an instance of this type, first create a SpaceHierarchyRoomsChunkInit and convert it via SpaceHierarchyRoomsChunk::from / .into().

Fields

canonical_alias: Option<OwnedRoomAliasId>

The canonical alias of the room, if any.

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 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.

children_state: Vec<Raw<HierarchySpaceChildEvent>, Global>

The stripped m.space.child events of the space-room.

If the room is not a space-room, this should be empty.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
Converts to this type from the input type.
Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more