pub trait DeferredInitialization {
    type Initialized;

    fn initialize(self) -> Result<Self::Initialized>;
}
Expand description

Lazy initialization when building layers with NetworkBuilder

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors