pub struct UpdateRequest<'a> {
pub usergroup: &'a str,
pub users: &'a str,
pub include_count: Option<bool>,
}Fields§
§usergroup: &'a strThe encoded ID of the User Group to update.
users: &'a strA comma separated string of encoded user IDs that represent the entire list of users for the User Group.
include_count: Option<bool>Include the number of users in the User Group.
Trait Implementations§
Source§impl<'a> Clone for UpdateRequest<'a>
impl<'a> Clone for UpdateRequest<'a>
Source§fn clone(&self) -> UpdateRequest<'a>
fn clone(&self) -> UpdateRequest<'a>
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<'a> Debug for UpdateRequest<'a>
impl<'a> Debug for UpdateRequest<'a>
Source§impl<'a> Default for UpdateRequest<'a>
impl<'a> Default for UpdateRequest<'a>
Source§fn default() -> UpdateRequest<'a>
fn default() -> UpdateRequest<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for UpdateRequest<'a>
impl<'a> RefUnwindSafe for UpdateRequest<'a>
impl<'a> Send for UpdateRequest<'a>
impl<'a> Sync for UpdateRequest<'a>
impl<'a> Unpin for UpdateRequest<'a>
impl<'a> UnwindSafe for UpdateRequest<'a>
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