Derive Macro see_derive::See

source ·
#[derive(See)]
Expand description

Derives the trait See, providing auto implementation for See, while also combining the loading visitors into a single place.

Example


#[derive(see_derive::See)]
struct Point {
    x: i32,
    y: i32
}

This above example implements See<crate::see_t::X> and See<crate::see_t::Y> for the point struct