pub trait DeferredInitialization {
    type Initialized;

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

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors