1 2 3 4 5 6 7
#![doc(hidden)] pub trait Builder<'a> { type BuiltType; fn build(&mut self) -> Self::BuiltType; }