squire 0.0.1-alpha.7

Safe and idiomatic SQLite bindings
1
2
3
4
5
6
7
use crate::ffi::ContextRef;

pub trait Return<'b> {
    fn apply<'a>(self, context: &mut ContextRef<'a>)
    where
        'b: 'a;
}