Trait air_test_framework::services::MarineService

source ·
pub trait MarineService {
    // Required method
    fn call<'this>(
        &'this self,
        params: CallRequestParams,
    ) -> LocalBoxFuture<'this, FunctionOutcome>;

    // Provided method
    fn to_handle(self) -> MarineServiceHandle
       where Self: Sized + 'static { ... }
}
Expand description

A mocked Marine service.

Required Methods§

source

fn call<'this>( &'this self, params: CallRequestParams, ) -> LocalBoxFuture<'this, FunctionOutcome>

Provided Methods§

source

fn to_handle(self) -> MarineServiceHandle
where Self: Sized + 'static,

Implementors§