tailvore_examples 0.19.0

Examples for the tailvore crate.
Documentation
1
2
3
4
5
6
7
8
9
10
use tailvore::self_referencing;

#[self_referencing]
struct S {
    #[borrows(a)]
    b: &'this i32,
    a: i32,
}

fn main() {}