Trait lemmy_db_schema::traits::Bannable[][src]

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

Associated Types

Required methods

Implementors