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