pub struct GetGroupParams {
pub groupname: Option<String>,
pub group_id: Option<String>,
pub expand: Option<String>,
}
Expand description
struct for passing parameters to the method get_group
Fields§
§groupname: Option<String>
As a group’s name can change, use of groupId
is recommended to identify a group. The name of the group. This parameter cannot be used with the groupId
parameter.
group_id: Option<String>
The ID of the group. This parameter cannot be used with the groupName
parameter.
expand: Option<String>
List of fields to expand.
Trait Implementations§
Source§impl Clone for GetGroupParams
impl Clone for GetGroupParams
Source§fn clone(&self) -> GetGroupParams
fn clone(&self) -> GetGroupParams
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 GetGroupParams
impl Debug for GetGroupParams
Source§impl Default for GetGroupParams
impl Default for GetGroupParams
Source§fn default() -> GetGroupParams
fn default() -> GetGroupParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetGroupParams
impl RefUnwindSafe for GetGroupParams
impl Send for GetGroupParams
impl Sync for GetGroupParams
impl Unpin for GetGroupParams
impl UnwindSafe for GetGroupParams
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