Trait RefFactory
flatdata
pub trait RefFactory: for<'a> Struct<'a> { }
Shortcut trait for Structs that are able to produce references of any given lifetime
Equivalent to ```for<'a> Struct<'a>'''
impl<T> RefFactory for T where T: for<'a> Struct<'a>,