pub struct RealmUsersWithUserIdGet<'a, TS: KeycloakTokenSupplier> {
pub realm_admin: &'a KeycloakRealmAdmin<'a, TS>,
pub user_id: &'a str,
}Fields§
§realm_admin: &'a KeycloakRealmAdmin<'a, TS>Realm admin client
user_id: &'a strImplementations§
Source§impl<'a, TS> RealmUsersWithUserIdGet<'a, TS>
impl<'a, TS> RealmUsersWithUserIdGet<'a, TS>
Trait Implementations§
Source§impl<'a, TS> IntoFuture for RealmUsersWithUserIdGet<'a, TS>
impl<'a, TS> IntoFuture for RealmUsersWithUserIdGet<'a, TS>
Source§type Output = Result<UserRepresentation, KeycloakError>
type Output = Result<UserRepresentation, KeycloakError>
The output that the future will produce on completion.
Source§type IntoFuture = Pin<Box<dyn Future<Output = <RealmUsersWithUserIdGet<'a, TS> as IntoFuture>::Output> + Send + 'a>>
type IntoFuture = Pin<Box<dyn Future<Output = <RealmUsersWithUserIdGet<'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 RealmUsersWithUserIdGet<'a, TS>
impl<'a, TS: KeycloakTokenSupplier + Send + Sync> KeycloakRealmAdminMethod for RealmUsersWithUserIdGet<'a, TS>
type Output = UserRepresentation
type Args = RealmUsersWithUserIdGetArgs
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 RealmUsersWithUserIdGet<'a, TS>
impl<'a, TS> !UnwindSafe for RealmUsersWithUserIdGet<'a, TS>
impl<'a, TS> Freeze for RealmUsersWithUserIdGet<'a, TS>
impl<'a, TS> Send for RealmUsersWithUserIdGet<'a, TS>where
TS: Sync,
impl<'a, TS> Sync for RealmUsersWithUserIdGet<'a, TS>where
TS: Sync,
impl<'a, TS> Unpin for RealmUsersWithUserIdGet<'a, TS>
impl<'a, TS> UnsafeUnpin for RealmUsersWithUserIdGet<'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