pub struct GetUserBadgesParams {
pub tenant_id: String,
pub user_id: Option<String>,
pub badge_id: Option<String>,
pub type: Option<f64>,
pub displayed_on_comments: Option<bool>,
pub limit: Option<f64>,
pub skip: Option<f64>,
}Expand description
struct for passing parameters to the method get_user_badges
Fields§
§tenant_id: String§user_id: Option<String>§badge_id: Option<String>§type: Option<f64>§displayed_on_comments: Option<bool>§limit: Option<f64>§skip: Option<f64>Trait Implementations§
Source§impl Clone for GetUserBadgesParams
impl Clone for GetUserBadgesParams
Source§fn clone(&self) -> GetUserBadgesParams
fn clone(&self) -> GetUserBadgesParams
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 GetUserBadgesParams
impl RefUnwindSafe for GetUserBadgesParams
impl Send for GetUserBadgesParams
impl Sync for GetUserBadgesParams
impl Unpin for GetUserBadgesParams
impl UnwindSafe for GetUserBadgesParams
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