Enum HistoryVisibility
#[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 Ord for HistoryVisibility
impl Ord for HistoryVisibility
§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,
§impl PartialEq for HistoryVisibility
impl PartialEq for HistoryVisibility
§impl PartialOrd for HistoryVisibility
impl PartialOrd for HistoryVisibility
§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
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
§impl<T> CompatExt for T
impl<T> CompatExt for T
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.Source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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