pub trait Namespace<T: Transport>: Clone {
    fn new(transport: T) -> Self;
    fn transport(&self) -> &T;
}
Expand description

Common API for all namespaces

Required Methods

Creates new API namespace

Borrows a transport.

Implementors