pub struct ToDeviceConfig {
pub enabled: Option<bool>,
pub limit: Option<UInt>,
pub since: Option<String>,
pub lists: Option<Vec<String>>,
pub rooms: Option<Vec<OwnedRoomId>>,
}
Available on (crate features
client
or server
) and crate feature unstable-msc3575
only.Expand description
To-device messages extension configuration.
According to MSC3885.
Fields§
§enabled: Option<bool>
Activate or deactivate this extension. Sticky.
limit: Option<UInt>
Max number of to-device messages per response.
since: Option<String>
Give messages since this token only.
lists: Option<Vec<String>>
List of list names for which to-device events should be enabled.
If not defined, will be enabled for all the lists appearing in the request. If defined and empty, will be disabled for all the lists.
Sticky.
rooms: Option<Vec<OwnedRoomId>>
List of room names for which to-device events should be enabled.
If not defined, will be enabled for all the rooms appearing in the room_subscriptions
.
If defined and empty, will be disabled for all the rooms.
Sticky.
Implementations§
Trait Implementations§
Source§impl Clone for ToDeviceConfig
impl Clone for ToDeviceConfig
Source§fn clone(&self) -> ToDeviceConfig
fn clone(&self) -> ToDeviceConfig
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 moreSource§impl Debug for ToDeviceConfig
impl Debug for ToDeviceConfig
Source§impl Default for ToDeviceConfig
impl Default for ToDeviceConfig
Source§fn default() -> ToDeviceConfig
fn default() -> ToDeviceConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ToDeviceConfig
impl<'de> Deserialize<'de> for ToDeviceConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ToDevice> for ToDeviceConfig
Available on crate feature unstable-msc4186
only.
impl From<ToDevice> for ToDeviceConfig
Available on crate feature
unstable-msc4186
only.Source§impl PartialEq for ToDeviceConfig
impl PartialEq for ToDeviceConfig
Source§impl Serialize for ToDeviceConfig
impl Serialize for ToDeviceConfig
impl StructuralPartialEq for ToDeviceConfig
Auto Trait Implementations§
impl Freeze for ToDeviceConfig
impl RefUnwindSafe for ToDeviceConfig
impl Send for ToDeviceConfig
impl Sync for ToDeviceConfig
impl Unpin for ToDeviceConfig
impl UnwindSafe for ToDeviceConfig
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