Trait hvcg_iam_openapi_identity::Api[][src]

pub trait Api<C: Send + Sync> {
    fn activate_user<'life0, 'life1, 'async_trait>(
        &'life0 self,
        inline_object2: InlineObject2,
        context: &'life1 C
    ) -> Pin<Box<dyn Future<Output = Result<ActivateUserResponse, ApiError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
fn create_user<'life0, 'life1, 'async_trait>(
        &'life0 self,
        user: User,
        context: &'life1 C
    ) -> Pin<Box<dyn Future<Output = Result<CreateUserResponse, ApiError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
fn deactivate_user<'life0, 'life1, 'async_trait>(
        &'life0 self,
        inline_object1: InlineObject1,
        context: &'life1 C
    ) -> Pin<Box<dyn Future<Output = Result<DeactivateUserResponse, ApiError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
fn password_update<'life0, 'life1, 'async_trait>(
        &'life0 self,
        inline_object: InlineObject,
        context: &'life1 C
    ) -> Pin<Box<dyn Future<Output = Result<PasswordUpdateResponse, ApiError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
fn update_user<'life0, 'life1, 'async_trait>(
        &'life0 self,
        id: Uuid,
        user: User,
        context: &'life1 C
    ) -> Pin<Box<dyn Future<Output = Result<UpdateUserResponse, ApiError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
fn query_user_by_id<'life0, 'life1, 'async_trait>(
        &'life0 self,
        id: Uuid,
        context: &'life1 C
    ) -> Pin<Box<dyn Future<Output = Result<QueryUserByIdResponse, ApiError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
fn query_users<'life0, 'life1, 'async_trait>(
        &'life0 self,
        username: Option<String>,
        phone: Option<String>,
        email: Option<String>,
        enabled: Option<bool>,
        offset: Option<i32>,
        count: Option<i32>,
        context: &'life1 C
    ) -> Pin<Box<dyn Future<Output = Result<QueryUsersResponse, ApiError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
fn delete_user<'life0, 'life1, 'async_trait>(
        &'life0 self,
        id: Uuid,
        context: &'life1 C
    ) -> Pin<Box<dyn Future<Output = Result<DeleteUserResponse, ApiError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; fn poll_ready(
        &self,
        _cx: &mut Context<'_>
    ) -> Poll<Result<(), Box<dyn Error + Send + Sync + 'static>>> { ... } }
Expand description

API

Required methods

Activate a user

Create user

Deactive user

password update

Update an existing user

Get user infomation by id

Get users infomation

Deletes a user

Provided methods

Implementors