pub trait Init { // Provided method fn init(&mut self) -> Result<(), Error> { ... } }
Specialized code to execute upon initialization. For any struct with fields that implement Init, this should propagate down the hierarchy.
Init