pub trait DeferredInitialization {
type Initialized;
// Required method
fn initialize(self) -> Result<Self::Initialized>;
}Expand description
Lazy initialization when building layers with NetworkBuilder
pub trait DeferredInitialization {
type Initialized;
// Required method
fn initialize(self) -> Result<Self::Initialized>;
}Lazy initialization when building layers with NetworkBuilder