#[non_exhaustive]pub enum HistoryVisibility {
Invited,
Joined,
Shared,
WorldReadable,
}
Expand description
Who can see a room’s history.
This type can hold an arbitrary string. To build this with a custom value, convert it from a
string with ::from()
/ .into()
. To check for values that are not available as a
documented variant here, use its string representation, obtained through
.as_str()
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Invited
Previous events are accessible to newly joined members from the point they were invited onwards.
Events stop being accessible when the member’s state changes to something other than invite or join.
Joined
Previous events are accessible to newly joined members from the point they joined the room onwards. Events stop being accessible when the member’s state changes to something other than join.
Previous events are always accessible to newly joined members.
All events in the room are accessible, even those sent when the member was not a part of the room.
WorldReadable
All events while this is the HistoryVisibility
value may be shared by any participating
homeserver with anyone, regardless of whether they have ever joined the room.
Implementations§
§impl HistoryVisibility
impl HistoryVisibility
Trait Implementations§
§impl AsRef<str> for HistoryVisibility
impl AsRef<str> for HistoryVisibility
§impl Clone for HistoryVisibility
impl Clone for HistoryVisibility
§fn clone(&self) -> HistoryVisibility
fn clone(&self) -> HistoryVisibility
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl Debug for HistoryVisibility
impl Debug for HistoryVisibility
§impl<'de> Deserialize<'de> for HistoryVisibility
impl<'de> Deserialize<'de> for HistoryVisibility
§fn deserialize<D>(
deserializer: D
) -> Result<HistoryVisibility, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<HistoryVisibility, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
§impl Display for HistoryVisibility
impl Display for HistoryVisibility
§impl<T> From<T> for HistoryVisibility
impl<T> From<T> for HistoryVisibility
§fn from(s: T) -> HistoryVisibility
fn from(s: T) -> HistoryVisibility
§impl PartialEq for HistoryVisibility
impl PartialEq for HistoryVisibility
§fn eq(&self, other: &HistoryVisibility) -> bool
fn eq(&self, other: &HistoryVisibility) -> bool
self
and other
values to be equal, and is used
by ==
.§impl Serialize for HistoryVisibility
impl Serialize for HistoryVisibility
§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,
impl Eq for HistoryVisibility
impl StructuralEq for HistoryVisibility
impl StructuralPartialEq for HistoryVisibility
Auto Trait Implementations§
impl RefUnwindSafe for HistoryVisibility
impl Send for HistoryVisibility
impl Sync for HistoryVisibility
impl Unpin for HistoryVisibility
impl UnwindSafe for HistoryVisibility
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.