Enum matrix_sdk_base::ruma::api::client::sync::sync_events::v4::RoomReceiptConfig
#[non_exhaustive]pub enum RoomReceiptConfig {
AllSubscribed,
Room(OwnedRoomId),
}
Available on crate feature
api
and (crate features client
or server
) and crate feature unstable-msc3575
only.Expand description
Single entry for a room-related read receipt configuration in ReceiptsConfig
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AllSubscribed
Get read receipts for all the subscribed rooms.
Room(OwnedRoomId)
Get read receipts for this particular room.
Trait Implementations§
§impl Clone for RoomReceiptConfig
impl Clone for RoomReceiptConfig
§fn clone(&self) -> RoomReceiptConfig
fn clone(&self) -> RoomReceiptConfig
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 more§impl Debug for RoomReceiptConfig
impl Debug for RoomReceiptConfig
§impl<'de> Deserialize<'de> for RoomReceiptConfig
impl<'de> Deserialize<'de> for RoomReceiptConfig
§fn deserialize<D>(
deserializer: D
) -> Result<RoomReceiptConfig, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<RoomReceiptConfig, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl PartialEq for RoomReceiptConfig
impl PartialEq for RoomReceiptConfig
§fn eq(&self, other: &RoomReceiptConfig) -> bool
fn eq(&self, other: &RoomReceiptConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for RoomReceiptConfig
impl Serialize for RoomReceiptConfig
§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,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for RoomReceiptConfig
Auto Trait Implementations§
impl RefUnwindSafe for RoomReceiptConfig
impl Send for RoomReceiptConfig
impl Sync for RoomReceiptConfig
impl Unpin for RoomReceiptConfig
impl UnwindSafe for RoomReceiptConfig
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