Trait lemmy_db_schema::traits::Blockable[][src]

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

Associated Types

Required methods

Implementors