pub struct GetUserGroupParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> GetUserGroupParamsBuilder<S>
impl<S: State> GetUserGroupParamsBuilder<S>
Sourcepub fn build(self) -> GetUserGroupParamswhere
S: IsComplete,
pub fn build(self) -> GetUserGroupParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn group_id(self, value: String) -> GetUserGroupParamsBuilder<SetGroupId<S>>where
S::GroupId: IsUnset,
pub fn group_id(self, value: String) -> GetUserGroupParamsBuilder<SetGroupId<S>>where
S::GroupId: IsUnset,
Required.
The ID of the user group
Auto Trait Implementations§
impl<S> Freeze for GetUserGroupParamsBuilder<S>
impl<S> RefUnwindSafe for GetUserGroupParamsBuilder<S>
impl<S> Send for GetUserGroupParamsBuilder<S>
impl<S> Sync for GetUserGroupParamsBuilder<S>
impl<S> Unpin for GetUserGroupParamsBuilder<S>
impl<S> UnwindSafe for GetUserGroupParamsBuilder<S>
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