Enum ruma::events::room::history_visibility::HistoryVisibility
source · #[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§
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 PartialEq for HistoryVisibility
impl PartialEq for HistoryVisibility
source§fn eq(&self, other: &HistoryVisibility) -> bool
fn eq(&self, other: &HistoryVisibility) -> bool
self
and other
values to be equal, and is used
by ==
.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
impl StructuralPartialEq 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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
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
key
and return true
if they are equal.