Trait lemmy_db_queries::Saveable[][src]

pub trait Saveable {
    type Form;
    fn save(conn: &PgConnection, form: &Self::Form) -> Result<Self, Error>
    where
        Self: Sized
;
fn unsave(conn: &PgConnection, form: &Self::Form) -> Result<usize, Error>
    where
        Self: Sized
; }

Associated Types

Required methods

Implementations on Foreign Types

Implementors