pub trait DeferredInitializationList {
    type Output;

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

List of lazy initializers for NetworkBuilder

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors