pub struct ListInvitationsParams {
pub page_number: Option<i32>,
pub page_size: Option<i32>,
}
Expand description
struct for passing parameters to the method list_invitations
Fields§
§page_number: Option<i32>
Current page.
page_size: Option<i32>
Number of records per page.
Trait Implementations§
Source§impl Clone for ListInvitationsParams
impl Clone for ListInvitationsParams
Source§fn clone(&self) -> ListInvitationsParams
fn clone(&self) -> ListInvitationsParams
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 ListInvitationsParams
impl Debug for ListInvitationsParams
Source§impl Default for ListInvitationsParams
impl Default for ListInvitationsParams
Source§fn default() -> ListInvitationsParams
fn default() -> ListInvitationsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListInvitationsParams
impl RefUnwindSafe for ListInvitationsParams
impl Send for ListInvitationsParams
impl Sync for ListInvitationsParams
impl Unpin for ListInvitationsParams
impl UnwindSafe for ListInvitationsParams
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