pub trait AsyncService<C> {
    // Required method
    fn new(client: C) -> Self;
}
Expand description

A trait implemented by generated async client interfaces for a Conjure service.

Required Methods§

source

fn new(client: C) -> Self

Creates a new service wrapping an async HTTP client.

Object Safety§

This trait is not object safe.

Implementors§