#[non_exhaustive]pub struct SpaceHierarchyRoomsChunk {
    pub canonical_alias: Option<OwnedRoomAliasId>,
    pub name: Option<Box<RoomName, Global>>,
    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>,
}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 (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.
name: Option<Box<RoomName, Global>>The name of the room, if any.
num_joined_members: UIntThe number of members joined to the room.
room_id: OwnedRoomIdThe ID of the room.
topic: Option<String>The topic of the room, if any.
world_readable: boolWhether the room may be viewed by guest users without joining.
guest_can_join: boolWhether 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: SpaceRoomJoinRuleThe 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
sourceimpl Clone for SpaceHierarchyRoomsChunk
 
impl Clone for SpaceHierarchyRoomsChunk
sourcefn clone(&self) -> SpaceHierarchyRoomsChunk
 
fn clone(&self) -> SpaceHierarchyRoomsChunk
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for SpaceHierarchyRoomsChunk
 
impl Debug for SpaceHierarchyRoomsChunk
sourceimpl<'de> Deserialize<'de> for SpaceHierarchyRoomsChunk
 
impl<'de> Deserialize<'de> for SpaceHierarchyRoomsChunk
sourcefn deserialize<__D>(
    __deserializer: __D
) -> Result<SpaceHierarchyRoomsChunk, <__D as Deserializer<'de>>::Error> where
    __D: Deserializer<'de>, 
 
fn deserialize<__D>(
    __deserializer: __D
) -> Result<SpaceHierarchyRoomsChunk, <__D as Deserializer<'de>>::Error> where
    __D: Deserializer<'de>, 
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<SpaceHierarchyRoomsChunkInit> for SpaceHierarchyRoomsChunk
 
impl From<SpaceHierarchyRoomsChunkInit> for SpaceHierarchyRoomsChunk
sourcefn from(init: SpaceHierarchyRoomsChunkInit) -> SpaceHierarchyRoomsChunk
 
fn from(init: SpaceHierarchyRoomsChunkInit) -> SpaceHierarchyRoomsChunk
Converts to this type from the input type.
sourceimpl Serialize for SpaceHierarchyRoomsChunk
 
impl Serialize for SpaceHierarchyRoomsChunk
sourcefn 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
Auto Trait Implementations
impl RefUnwindSafe for SpaceHierarchyRoomsChunk
impl Send for SpaceHierarchyRoomsChunk
impl Sync for SpaceHierarchyRoomsChunk
impl Unpin for SpaceHierarchyRoomsChunk
impl UnwindSafe for SpaceHierarchyRoomsChunk
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
 
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
 
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
 
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
 
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
