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