1 2 3 4 5 6 7 8
use recallable::Recallable; #[derive(Recallable)] struct BorrowedValue<'a> { value: &'a str, } fn main() {}