pub struct ListOrganizationMembersOptions {
pub offset: Option<u32>,
pub limit: Option<u32>,
}Expand description
Optional query parameters for crate::Client::list_organization_members.
Fields§
§offset: Option<u32>Skip this many rows before returning results.
limit: Option<u32>Cap on the number of rows returned.
Implementations§
Source§impl ListOrganizationMembersOptions
impl ListOrganizationMembersOptions
Sourcepub fn offset(self, offset: u32) -> Self
pub fn offset(self, offset: u32) -> Self
Builder: set Self::offset.
Sourcepub fn limit(self, limit: u32) -> Self
pub fn limit(self, limit: u32) -> Self
Builder: set Self::limit.
Trait Implementations§
Source§impl Clone for ListOrganizationMembersOptions
impl Clone for ListOrganizationMembersOptions
Source§fn clone(&self) -> ListOrganizationMembersOptions
fn clone(&self) -> ListOrganizationMembersOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ListOrganizationMembersOptions
Source§impl Default for ListOrganizationMembersOptions
impl Default for ListOrganizationMembersOptions
Source§fn default() -> ListOrganizationMembersOptions
fn default() -> ListOrganizationMembersOptions
Returns the “default value” for a type. Read more
impl Eq for ListOrganizationMembersOptions
impl StructuralPartialEq for ListOrganizationMembersOptions
Auto Trait Implementations§
impl Freeze for ListOrganizationMembersOptions
impl RefUnwindSafe for ListOrganizationMembersOptions
impl Send for ListOrganizationMembersOptions
impl Sync for ListOrganizationMembersOptions
impl Unpin for ListOrganizationMembersOptions
impl UnsafeUnpin for ListOrganizationMembersOptions
impl UnwindSafe for ListOrganizationMembersOptions
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