Trait CanLoadBuilder

Source
pub trait CanLoadBuilder: HasBuilderType + HasErrorType {
    // Required method
    fn load_builder(
        &self,
    ) -> impl Future<Output = Result<Self::Builder, Self::Error>> + Send;
}

Required Methods§

Source

fn load_builder( &self, ) -> impl Future<Output = Result<Self::Builder, Self::Error>> + Send

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§