#[non_exhaustive]pub enum HistoryVisibility {
    Invited,
    Joined,
    Shared,
    WorldReadable,
}events only.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§
Trait Implementations§
Source§impl AsRef<str> for HistoryVisibility
 
impl AsRef<str> for HistoryVisibility
Source§impl Clone for HistoryVisibility
 
impl Clone for HistoryVisibility
Source§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 moreSource§impl Debug for HistoryVisibility
 
impl Debug for HistoryVisibility
Source§impl<'de> Deserialize<'de> for HistoryVisibility
 
impl<'de> Deserialize<'de> for HistoryVisibility
Source§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>,
Source§impl Display for HistoryVisibility
 
impl Display for HistoryVisibility
Source§impl<T> From<T> for HistoryVisibility
 
impl<T> From<T> for HistoryVisibility
Source§fn from(s: T) -> HistoryVisibility
 
fn from(s: T) -> HistoryVisibility
Source§impl Ord for HistoryVisibility
 
impl Ord for HistoryVisibility
Source§fn cmp(&self, other: &HistoryVisibility) -> Ordering
 
fn cmp(&self, other: &HistoryVisibility) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Source§impl PartialEq for HistoryVisibility
 
impl PartialEq for HistoryVisibility
Source§impl PartialOrd for HistoryVisibility
 
impl PartialOrd for HistoryVisibility
Source§impl Serialize for HistoryVisibility
 
impl Serialize for HistoryVisibility
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,
impl Eq for HistoryVisibility
Auto Trait Implementations§
impl Freeze for HistoryVisibility
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<Q, K> Comparable<K> for Q
 
impl<Q, K> Comparable<K> for Q
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
key and return true if they are equal.