pub trait GetBlob { // Required method fn get_blob<'a>(&self, db: &'a Connection, column: &str) -> Option<Blob<'a>>; }
Defines behavior for getting BLOB data from from a table
Retreive BLOB data from a table
BLOB