ApiBuilder

Trait ApiBuilder 

Source
pub trait ApiBuilder: MaybeSend + MaybeSync {
    type Output: MaybeSend + MaybeSync;
    type Error: MaybeSend + MaybeSync + Debug;

    // Required method
    fn build(self) -> Result<Self::Output, Self::Error>;
}
Expand description

Build an API from its parts for the XMTP Backend

Required Associated Types§

Required Methods§

Source

fn build(self) -> Result<Self::Output, Self::Error>

Build the api client

Implementors§