safe_builder/
lib.rs

1pub trait SafeBuilder<T: PartialBuilder>
2{
3    fn build() -> T;
4}
5
6pub trait PartialBuilder { }