pub struct GroupsListOptions {
pub filter_term: Option<String>,
pub fields: Option<Vec<String>>,
pub limit: Option<i64>,
pub offset: Option<i64>,
}Expand description
Optional parameters for GroupsManager::list.
Fields§
§filter_term: Option<String>§fields: Option<Vec<String>>§limit: Option<i64>§offset: Option<i64>Trait Implementations§
Source§impl Clone for GroupsListOptions
impl Clone for GroupsListOptions
Source§fn clone(&self) -> GroupsListOptions
fn clone(&self) -> GroupsListOptions
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 moreSource§impl Debug for GroupsListOptions
impl Debug for GroupsListOptions
Source§impl Default for GroupsListOptions
impl Default for GroupsListOptions
Source§fn default() -> GroupsListOptions
fn default() -> GroupsListOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GroupsListOptions
impl RefUnwindSafe for GroupsListOptions
impl Send for GroupsListOptions
impl Sync for GroupsListOptions
impl Unpin for GroupsListOptions
impl UnsafeUnpin for GroupsListOptions
impl UnwindSafe for GroupsListOptions
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