Trait lightspeed_cms::repository::ProjectRepository[][src]

pub trait ProjectRepository: Clone + Send + Sync {
    type Conn;
#[must_use]    fn fetch_by_id<'life0, 'life1, 'async_trait>(
        &'life0 self,
        conn: &'life1 mut Self::Conn,
        id: i64
    ) -> Pin<Box<dyn Future<Output = Result<ProjectModel, LightSpeedError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn exists_by_name<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        conn: &'life1 mut Self::Conn,
        name: &'life2 str
    ) -> Pin<Box<dyn Future<Output = Result<bool, LightSpeedError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn save<'life0, 'life1, 'async_trait>(
        &'life0 self,
        conn: &'life1 mut Self::Conn,
        model: NewModel<ProjectData>
    ) -> Pin<Box<dyn Future<Output = Result<ProjectModel, LightSpeedError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn update<'life0, 'life1, 'async_trait>(
        &'life0 self,
        conn: &'life1 mut Self::Conn,
        model: ProjectModel
    ) -> Pin<Box<dyn Future<Output = Result<ProjectModel, LightSpeedError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn delete<'life0, 'life1, 'async_trait>(
        &'life0 self,
        conn: &'life1 mut Self::Conn,
        model: ProjectModel
    ) -> Pin<Box<dyn Future<Output = Result<ProjectModel, LightSpeedError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Associated Types

Loading content...

Required methods

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

#[must_use]fn exists_by_name<'life0, 'life1, 'life2, 'async_trait>(
    &'life0 self,
    conn: &'life1 mut Self::Conn,
    name: &'life2 str
) -> Pin<Box<dyn Future<Output = Result<bool, LightSpeedError>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    Self: 'async_trait, 
[src]

#[must_use]fn save<'life0, 'life1, 'async_trait>(
    &'life0 self,
    conn: &'life1 mut Self::Conn,
    model: NewModel<ProjectData>
) -> Pin<Box<dyn Future<Output = Result<ProjectModel, LightSpeedError>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 
[src]

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

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

Loading content...

Implementors

impl ProjectRepository for PgProjectRepository[src]

type Conn = PgConnection

Loading content...