Trait Kitsune

Source
pub trait Kitsune:
    'static
    + Send
    + Sync
    + Debug {
    // Required method
    fn space(&self, space: SpaceId) -> BoxFut<'_, K2Result<DynSpace>>;
}
Expand description

The top-level Kitsune2 api trait.

Required Methods§

Source

fn space(&self, space: SpaceId) -> BoxFut<'_, K2Result<DynSpace>>

Get an existing space with the provided SpaceId or create a new one.

Implementors§