pub struct GetResourceUsersParams {
pub limit: Option<u32>,
pub cursor: Option<String>,
}Expand description
struct for passing parameters to the method [get_resource_users]
Fields§
§limit: Option<u32>Max number of results to return
cursor: Option<String>Continuation cursor for paging
Trait Implementations§
Source§impl Clone for GetResourceUsersParams
impl Clone for GetResourceUsersParams
Source§fn clone(&self) -> GetResourceUsersParams
fn clone(&self) -> GetResourceUsersParams
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 moreSource§impl Debug for GetResourceUsersParams
impl Debug for GetResourceUsersParams
Source§impl Default for GetResourceUsersParams
impl Default for GetResourceUsersParams
Source§fn default() -> GetResourceUsersParams
fn default() -> GetResourceUsersParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetResourceUsersParams
impl RefUnwindSafe for GetResourceUsersParams
impl Send for GetResourceUsersParams
impl Sync for GetResourceUsersParams
impl Unpin for GetResourceUsersParams
impl UnwindSafe for GetResourceUsersParams
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