pub struct ListGroups {
pub filter: Option<String>,
pub json: Option<bool>,
pub pagination_token: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
}Fields§
§filter: Option<String>Filter by auth method name or part of it
json: Option<bool>Set output format to JSON
pagination_token: Option<String>Next page reference
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
Implementations§
Source§impl ListGroups
impl ListGroups
pub fn new() -> ListGroups
Trait Implementations§
Source§impl Clone for ListGroups
impl Clone for ListGroups
Source§fn clone(&self) -> ListGroups
fn clone(&self) -> ListGroups
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 ListGroups
impl Debug for ListGroups
Source§impl Default for ListGroups
impl Default for ListGroups
Source§fn default() -> ListGroups
fn default() -> ListGroups
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListGroups
impl<'de> Deserialize<'de> for ListGroups
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListGroups
impl PartialEq for ListGroups
Source§fn eq(&self, other: &ListGroups) -> bool
fn eq(&self, other: &ListGroups) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ListGroups
impl Serialize for ListGroups
impl StructuralPartialEq for ListGroups
Auto Trait Implementations§
impl Freeze for ListGroups
impl RefUnwindSafe for ListGroups
impl Send for ListGroups
impl Sync for ListGroups
impl Unpin for ListGroups
impl UnsafeUnpin for ListGroups
impl UnwindSafe for ListGroups
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