pub struct RealmGroupsWithGroupIdMembersGet<'a, TS: KeycloakTokenSupplier> {
pub realm_admin: &'a KeycloakRealmAdmin<'a, TS>,
pub group_id: &'a str,
}Fields§
§realm_admin: &'a KeycloakRealmAdmin<'a, TS>Realm admin client
group_id: &'a strImplementations§
Source§impl<'a, TS> RealmGroupsWithGroupIdMembersGet<'a, TS>
impl<'a, TS> RealmGroupsWithGroupIdMembersGet<'a, TS>
Sourcepub fn brief_representation(
self,
value: impl Into<Option<bool>>,
) -> Builder<'a, Self>
pub fn brief_representation( self, value: impl Into<Option<bool>>, ) -> Builder<'a, Self>
Only return basic information (only guaranteed to return id, username, created, first and last name, email, enabled state, email verification state, federation link, and access. Note that it means that namely user attributes, required actions, and not before are not returned.)
Trait Implementations§
Source§impl<'a, TS> IntoFuture for RealmGroupsWithGroupIdMembersGet<'a, TS>
impl<'a, TS> IntoFuture for RealmGroupsWithGroupIdMembersGet<'a, TS>
Source§type Output = Result<Vec<UserRepresentation>, KeycloakError>
type Output = Result<Vec<UserRepresentation>, KeycloakError>
The output that the future will produce on completion.
Source§type IntoFuture = Pin<Box<dyn Future<Output = <RealmGroupsWithGroupIdMembersGet<'a, TS> as IntoFuture>::Output> + Send + 'a>>
type IntoFuture = Pin<Box<dyn Future<Output = <RealmGroupsWithGroupIdMembersGet<'a, TS> as IntoFuture>::Output> + Send + 'a>>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Source§impl<'a, TS: KeycloakTokenSupplier + Send + Sync> KeycloakRealmAdminMethod for RealmGroupsWithGroupIdMembersGet<'a, TS>
impl<'a, TS: KeycloakTokenSupplier + Send + Sync> KeycloakRealmAdminMethod for RealmGroupsWithGroupIdMembersGet<'a, TS>
type Output = Vec<UserRepresentation>
type Args = RealmGroupsWithGroupIdMembersGetArgs
fn opts( self, _: Self::Args, ) -> impl Future<Output = Result<Self::Output, KeycloakError>> + use<'a, TS>
fn with_default<F>( self, f: F, ) -> impl Future<Output = Result<Self::Output, KeycloakError>> + Send
fn builder<'m>(self) -> Builder<'m, Self>where
Self: 'm + Sized,
Auto Trait Implementations§
impl<'a, TS> !RefUnwindSafe for RealmGroupsWithGroupIdMembersGet<'a, TS>
impl<'a, TS> !UnwindSafe for RealmGroupsWithGroupIdMembersGet<'a, TS>
impl<'a, TS> Freeze for RealmGroupsWithGroupIdMembersGet<'a, TS>
impl<'a, TS> Send for RealmGroupsWithGroupIdMembersGet<'a, TS>where
TS: Sync,
impl<'a, TS> Sync for RealmGroupsWithGroupIdMembersGet<'a, TS>where
TS: Sync,
impl<'a, TS> Unpin for RealmGroupsWithGroupIdMembersGet<'a, TS>
impl<'a, TS> UnsafeUnpin for RealmGroupsWithGroupIdMembersGet<'a, TS>
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