pub struct ResetUserNotificationsParams {
pub tenant_id: String,
pub after_id: Option<String>,
pub after_created_at: Option<i64>,
pub unread_only: Option<bool>,
pub dm_only: Option<bool>,
pub no_dm: Option<bool>,
pub sso: Option<String>,
}Expand description
struct for passing parameters to the method reset_user_notifications
Fields§
§tenant_id: String§after_id: Option<String>§after_created_at: Option<i64>§unread_only: Option<bool>§dm_only: Option<bool>§no_dm: Option<bool>§sso: Option<String>Trait Implementations§
Source§impl Clone for ResetUserNotificationsParams
impl Clone for ResetUserNotificationsParams
Source§fn clone(&self) -> ResetUserNotificationsParams
fn clone(&self) -> ResetUserNotificationsParams
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ResetUserNotificationsParams
impl RefUnwindSafe for ResetUserNotificationsParams
impl Send for ResetUserNotificationsParams
impl Sync for ResetUserNotificationsParams
impl Unpin for ResetUserNotificationsParams
impl UnwindSafe for ResetUserNotificationsParams
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