structural/structural_trait.rs
1/*!
2Contains the Structural trait
3*/
4
5/// Marker trait for types that implement some field accessor traits.
6///
7/// By default the `Structural` derive macro
8/// puts documentation on the Structural trait implementation
9/// describing the accessor trait impls generated by it.
10pub trait Structural {}