Trait SqlUsersService

Source
pub trait SqlUsersService:
    Debug
    + Send
    + Sync {
    // Provided methods
    fn delete(
        &self,
        _req: SqlUsersDeleteRequest,
        _options: RequestOptions,
    ) -> impl Future<Output = Result<Response<Operation>>> + Send { ... }
    fn get(
        &self,
        _req: SqlUsersGetRequest,
        _options: RequestOptions,
    ) -> impl Future<Output = Result<Response<User>>> + Send { ... }
    fn insert(
        &self,
        _req: SqlUsersInsertRequest,
        _options: RequestOptions,
    ) -> impl Future<Output = Result<Response<Operation>>> + Send { ... }
    fn list(
        &self,
        _req: SqlUsersListRequest,
        _options: RequestOptions,
    ) -> impl Future<Output = Result<Response<UsersListResponse>>> + Send { ... }
    fn update(
        &self,
        _req: SqlUsersUpdateRequest,
        _options: RequestOptions,
    ) -> impl Future<Output = Result<Response<Operation>>> + Send { ... }
}
Expand description

Defines the trait used to implement super::client::SqlUsersService.

Application developers may need to implement this trait to mock client::SqlUsersService. In other use-cases, application developers only use client::SqlUsersService and need not be concerned with this trait or its implementations.

Services gain new RPCs routinely. Consequently, this trait gains new methods too. To avoid breaking applications the trait provides a default implementation of each method. Most of these implementations just return an error.

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§