Trait lemmy_db_queries::Joinable[][src]

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

Associated Types

Required methods

Implementations on Foreign Types

Implementors