pub trait MakeBundleBuilder<'a, C> {
// Required method
fn build_with_options(
&mut self,
options: BundleOptions,
) -> impl Future<Output = Result<BundleBuilder<'a, C>, Error>>;
// Provided method
fn build(
&mut self,
) -> impl Future<Output = Result<BundleBuilder<'a, C>, Error>> { ... }
}
Expand description
Builder for BundleBuilder
s.
Required Methods§
Sourcefn build_with_options(
&mut self,
options: BundleOptions,
) -> impl Future<Output = Result<BundleBuilder<'a, C>, Error>>
fn build_with_options( &mut self, options: BundleOptions, ) -> impl Future<Output = Result<BundleBuilder<'a, C>, Error>>
Build with options.
Provided Methods§
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.