Struct matrix_sdk::room_directory_search::RoomDescription
source · pub struct RoomDescription {
pub room_id: OwnedRoomId,
pub name: Option<String>,
pub topic: Option<String>,
pub alias: Option<OwnedRoomAliasId>,
pub avatar_url: Option<OwnedMxcUri>,
pub join_rule: PublicRoomJoinRule,
pub is_world_readable: bool,
pub joined_members: u64,
}
Expand description
This struct represents a single result of a room directory search.
It’s produced by RoomDirectorySearch::results
.
Fields§
§room_id: OwnedRoomId
The room’s ID.
name: Option<String>
The name of the room, if any.
topic: Option<String>
The topic of the room, if any.
alias: Option<OwnedRoomAliasId>
The canonical alias of the room, if any.
avatar_url: Option<OwnedMxcUri>
The room’s avatar URL, if any.
join_rule: PublicRoomJoinRule
The room’s join rule.
is_world_readable: bool
Whether can be previewed
joined_members: u64
The number of members that have joined the room.
Trait Implementations§
source§impl Clone for RoomDescription
impl Clone for RoomDescription
source§fn clone(&self) -> RoomDescription
fn clone(&self) -> RoomDescription
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RoomDescription
impl Debug for RoomDescription
source§impl From<PublicRoomsChunk> for RoomDescription
impl From<PublicRoomsChunk> for RoomDescription
source§fn from(value: PublicRoomsChunk) -> Self
fn from(value: PublicRoomsChunk) -> Self
Converts to this type from the input type.
source§impl PartialEq for RoomDescription
impl PartialEq for RoomDescription
source§fn eq(&self, other: &RoomDescription) -> bool
fn eq(&self, other: &RoomDescription) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for RoomDescription
impl StructuralPartialEq for RoomDescription
Auto Trait Implementations§
impl Freeze for RoomDescription
impl RefUnwindSafe for RoomDescription
impl Send for RoomDescription
impl Sync for RoomDescription
impl Unpin for RoomDescription
impl UnwindSafe for RoomDescription
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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>
Converts
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>
Converts
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