tailvore_examples 0.19.0

Examples for the tailvore crate.
Documentation
use tailvore::self_referencing;

#[self_referencing]
struct Test {
    #[no_box]
    data: (),
    #[borrows(data)]
    field: (),
}

#[self_referencing]
struct Test2 {
    #[no_box]
    data: Box<()>,
    #[borrows(data)]
    field: (),
}

fn main() {}