pub trait Buildable { type Error; fn build() -> Result<Self, Self::Error> where Self: Sized; }
Trait for signaling a structure with a dedicated build stage