imessage_database::tables::table

Trait GetBlob

Source
pub trait GetBlob {
    // Required method
    fn get_blob<'a>(&self, db: &'a Connection, column: &str) -> Option<Blob<'a>>;
}
Expand description

Defines behavior for getting BLOB data from from a table

Required Methods§

Source

fn get_blob<'a>(&self, db: &'a Connection, column: &str) -> Option<Blob<'a>>

Retreive BLOB data from a table

Implementors§