SchemaService

Trait SchemaService 

Source
pub trait SchemaService:
    Debug
    + Send
    + Sync {
    // Provided methods
    fn get_schema(
        &self,
        _req: GetSchemaRequest,
        _options: RequestOptions,
    ) -> impl Future<Output = Result<Response<Schema>>> + Send { ... }
    fn list_schemas(
        &self,
        _req: ListSchemasRequest,
        _options: RequestOptions,
    ) -> impl Future<Output = Result<Response<ListSchemasResponse>>> + Send { ... }
    fn create_schema(
        &self,
        _req: CreateSchemaRequest,
        _options: RequestOptions,
    ) -> impl Future<Output = Result<Response<Operation>>> + Send { ... }
    fn update_schema(
        &self,
        _req: UpdateSchemaRequest,
        _options: RequestOptions,
    ) -> impl Future<Output = Result<Response<Operation>>> + Send { ... }
    fn delete_schema(
        &self,
        _req: DeleteSchemaRequest,
        _options: RequestOptions,
    ) -> impl Future<Output = Result<Response<Operation>>> + Send { ... }
    fn list_operations(
        &self,
        _req: ListOperationsRequest,
        _options: RequestOptions,
    ) -> impl Future<Output = Result<Response<ListOperationsResponse>>> + Send { ... }
    fn get_operation(
        &self,
        _req: GetOperationRequest,
        _options: RequestOptions,
    ) -> impl Future<Output = Result<Response<Operation>>> + Send { ... }
    fn cancel_operation(
        &self,
        _req: CancelOperationRequest,
        _options: RequestOptions,
    ) -> impl Future<Output = Result<Response<()>>> + Send { ... }
    fn get_polling_error_policy(
        &self,
        _options: &RequestOptions,
    ) -> Arc<dyn PollingErrorPolicy> { ... }
    fn get_polling_backoff_policy(
        &self,
        _options: &RequestOptions,
    ) -> Arc<dyn PollingBackoffPolicy> { ... }
}
Available on crate feature schema-service only.
Expand description

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

Application developers may need to implement this trait to mock client::SchemaService. In other use-cases, application developers only use client::SchemaService 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§

Source

fn get_schema( &self, _req: GetSchemaRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<Schema>>> + Send

Source

fn list_schemas( &self, _req: ListSchemasRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ListSchemasResponse>>> + Send

Source

fn create_schema( &self, _req: CreateSchemaRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<Operation>>> + Send

Source

fn update_schema( &self, _req: UpdateSchemaRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<Operation>>> + Send

Source

fn delete_schema( &self, _req: DeleteSchemaRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<Operation>>> + Send

Source

fn list_operations( &self, _req: ListOperationsRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<ListOperationsResponse>>> + Send

Source

fn get_operation( &self, _req: GetOperationRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<Operation>>> + Send

Source

fn cancel_operation( &self, _req: CancelOperationRequest, _options: RequestOptions, ) -> impl Future<Output = Result<Response<()>>> + Send

Source

fn get_polling_error_policy( &self, _options: &RequestOptions, ) -> Arc<dyn PollingErrorPolicy>

Returns the polling error policy.

When mocking, this method is typically irrelevant. Do not try to verify it is called by your mocks.

Source

fn get_polling_backoff_policy( &self, _options: &RequestOptions, ) -> Arc<dyn PollingBackoffPolicy>

Returns the polling backoff policy.

When mocking, this method is typically irrelevant. Do not try to verify it is called by your mocks.

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§