Struct ruma::api::federation::space::SpaceHierarchyChildSummary
source · 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§
§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 moresource§impl Debug for SpaceHierarchyChildSummary
impl Debug for SpaceHierarchyChildSummary
source§impl<'de> Deserialize<'de> for SpaceHierarchyChildSummary
impl<'de> Deserialize<'de> for SpaceHierarchyChildSummary
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SpaceHierarchyChildSummary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SpaceHierarchyChildSummary, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
source§impl From<SpaceHierarchyChildSummaryInit> for SpaceHierarchyChildSummary
impl From<SpaceHierarchyChildSummaryInit> for SpaceHierarchyChildSummary
source§fn from(init: SpaceHierarchyChildSummaryInit) -> SpaceHierarchyChildSummary
fn from(init: SpaceHierarchyChildSummaryInit) -> SpaceHierarchyChildSummary
source§impl From<SpaceHierarchyParentSummary> for SpaceHierarchyChildSummary
impl From<SpaceHierarchyParentSummary> for SpaceHierarchyChildSummary
source§fn from(parent: SpaceHierarchyParentSummary) -> SpaceHierarchyChildSummary
fn from(parent: SpaceHierarchyParentSummary) -> SpaceHierarchyChildSummary
source§impl Serialize for SpaceHierarchyChildSummary
impl Serialize for SpaceHierarchyChildSummary
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,
Auto Trait Implementations§
impl Freeze for SpaceHierarchyChildSummary
impl RefUnwindSafe for SpaceHierarchyChildSummary
impl Send for SpaceHierarchyChildSummary
impl Sync for SpaceHierarchyChildSummary
impl Unpin for SpaceHierarchyChildSummary
impl UnwindSafe for SpaceHierarchyChildSummary
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
)source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more