pub trait DeferredInitializationList {
    type Output;

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

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors