pub trait SchemaRepository: Clone + Send + Sync {
    type Conn;

    // Required methods
    fn fetch_by_id<'life0, 'life1, 'async_trait>(
        &'life0 self,
        conn: &'life1 mut Self::Conn,
        id: i64
    ) -> Pin<Box<dyn Future<Output = Result<SchemaModel, LightSpeedError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn exists_by_name_and_project_id<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        conn: &'life1 mut Self::Conn,
        name: &'life2 str,
        project_id: i64
    ) -> Pin<Box<dyn Future<Output = Result<bool, LightSpeedError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait;
    fn save<'life0, 'life1, 'async_trait>(
        &'life0 self,
        conn: &'life1 mut Self::Conn,
        model: NewModel<SchemaData>
    ) -> Pin<Box<dyn Future<Output = Result<SchemaModel, LightSpeedError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn update<'life0, 'life1, 'async_trait>(
        &'life0 self,
        conn: &'life1 mut Self::Conn,
        model: SchemaModel
    ) -> Pin<Box<dyn Future<Output = Result<SchemaModel, LightSpeedError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn delete<'life0, 'life1, 'async_trait>(
        &'life0 self,
        conn: &'life1 mut Self::Conn,
        model: SchemaModel
    ) -> Pin<Box<dyn Future<Output = Result<SchemaModel, LightSpeedError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn delete_by_project_id<'life0, 'life1, 'async_trait>(
        &'life0 self,
        conn: &'life1 mut Self::Conn,
        project_id: i64
    ) -> Pin<Box<dyn Future<Output = Result<u64, LightSpeedError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Associated Types§

Required Methods§

source

fn fetch_by_id<'life0, 'life1, 'async_trait>( &'life0 self, conn: &'life1 mut Self::Conn, id: i64 ) -> Pin<Box<dyn Future<Output = Result<SchemaModel, LightSpeedError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn exists_by_name_and_project_id<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, conn: &'life1 mut Self::Conn, name: &'life2 str, project_id: i64 ) -> Pin<Box<dyn Future<Output = Result<bool, LightSpeedError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

source

fn save<'life0, 'life1, 'async_trait>( &'life0 self, conn: &'life1 mut Self::Conn, model: NewModel<SchemaData> ) -> Pin<Box<dyn Future<Output = Result<SchemaModel, LightSpeedError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn update<'life0, 'life1, 'async_trait>( &'life0 self, conn: &'life1 mut Self::Conn, model: SchemaModel ) -> Pin<Box<dyn Future<Output = Result<SchemaModel, LightSpeedError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn delete<'life0, 'life1, 'async_trait>( &'life0 self, conn: &'life1 mut Self::Conn, model: SchemaModel ) -> Pin<Box<dyn Future<Output = Result<SchemaModel, LightSpeedError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn delete_by_project_id<'life0, 'life1, 'async_trait>( &'life0 self, conn: &'life1 mut Self::Conn, project_id: i64 ) -> Pin<Box<dyn Future<Output = Result<u64, LightSpeedError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Object Safety§

This trait is not object safe.

Implementors§