Trait initiative_core::DataStore

source ·
pub trait DataStore {
    // Required methods
    fn health_check<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<(), ()>> + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn delete_thing_by_uuid<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        uuid: &'life1 Uuid,
    ) -> Pin<Box<dyn Future<Output = Result<(), ()>> + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn edit_thing<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        thing: &'life1 Thing,
    ) -> Pin<Box<dyn Future<Output = Result<(), ()>> + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn get_all_the_things<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Thing>, ()>> + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn get_thing_by_uuid<'life0, 'life1, 'async_trait>(
        &'life0 self,
        uuid: &'life1 Uuid,
    ) -> Pin<Box<dyn Future<Output = Result<Option<Thing>, ()>> + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn get_thing_by_name<'life0, 'life1, 'async_trait>(
        &'life0 self,
        name: &'life1 str,
    ) -> Pin<Box<dyn Future<Output = Result<Option<Thing>, ()>> + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn get_things_by_name_start<'life0, 'life1, 'async_trait>(
        &'life0 self,
        name: &'life1 str,
        limit: Option<usize>,
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Thing>, ()>> + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn save_thing<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        thing: &'life1 Thing,
    ) -> Pin<Box<dyn Future<Output = Result<(), ()>> + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn set_value<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 mut self,
        key: &'life1 str,
        value: &'life2 str,
    ) -> Pin<Box<dyn Future<Output = Result<(), ()>> + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait;
    fn get_value<'life0, 'life1, 'async_trait>(
        &'life0 self,
        key: &'life1 str,
    ) -> Pin<Box<dyn Future<Output = Result<Option<String>, ()>> + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn delete_value<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        key: &'life1 str,
    ) -> Pin<Box<dyn Future<Output = Result<(), ()>> + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

source

fn health_check<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<(), ()>> + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

source

fn delete_thing_by_uuid<'life0, 'life1, 'async_trait>( &'life0 mut self, uuid: &'life1 Uuid, ) -> Pin<Box<dyn Future<Output = Result<(), ()>> + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn edit_thing<'life0, 'life1, 'async_trait>( &'life0 mut self, thing: &'life1 Thing, ) -> Pin<Box<dyn Future<Output = Result<(), ()>> + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn get_all_the_things<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<Vec<Thing>, ()>> + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

source

fn get_thing_by_uuid<'life0, 'life1, 'async_trait>( &'life0 self, uuid: &'life1 Uuid, ) -> Pin<Box<dyn Future<Output = Result<Option<Thing>, ()>> + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn get_thing_by_name<'life0, 'life1, 'async_trait>( &'life0 self, name: &'life1 str, ) -> Pin<Box<dyn Future<Output = Result<Option<Thing>, ()>> + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn get_things_by_name_start<'life0, 'life1, 'async_trait>( &'life0 self, name: &'life1 str, limit: Option<usize>, ) -> Pin<Box<dyn Future<Output = Result<Vec<Thing>, ()>> + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn save_thing<'life0, 'life1, 'async_trait>( &'life0 mut self, thing: &'life1 Thing, ) -> Pin<Box<dyn Future<Output = Result<(), ()>> + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn set_value<'life0, 'life1, 'life2, 'async_trait>( &'life0 mut self, key: &'life1 str, value: &'life2 str, ) -> Pin<Box<dyn Future<Output = Result<(), ()>> + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

source

fn get_value<'life0, 'life1, 'async_trait>( &'life0 self, key: &'life1 str, ) -> Pin<Box<dyn Future<Output = Result<Option<String>, ()>> + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn delete_value<'life0, 'life1, 'async_trait>( &'life0 mut self, key: &'life1 str, ) -> Pin<Box<dyn Future<Output = Result<(), ()>> + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§