Trait MakeBundleBuilder

Source
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 BundleBuilders.

Required Methods§

Source

fn build_with_options( &mut self, options: BundleOptions, ) -> impl Future<Output = Result<BundleBuilder<'a, C>>>

Build with options.

Provided Methods§

Source

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.

Implementations on Foreign Types§

Source§

impl<'a, C, T> MakeBundleBuilder<'a, C> for &mut T
where T: MakeBundleBuilder<'a, C>,

Source§

fn build(&mut self) -> impl Future<Output = Result<BundleBuilder<'a, C>>>

Source§

fn build_with_options( &mut self, options: BundleOptions, ) -> impl Future<Output = Result<BundleBuilder<'a, C>>>

Implementors§

Source§

impl<'a, C> MakeBundleBuilder<'a, C> for OnceMakeBundleBuilder<'a, C>

Source§

impl<'a, C: Deref<Target = impl Signer> + Clone> MakeBundleBuilder<'a, C> for TransactionBuilder<'a, C>

Source§

impl<'a, C: Deref<Target = impl Signer> + Clone, T> MakeBundleBuilder<'a, C> for EstimateFee<T>

Source§

impl<'a, C: Deref<Target = impl Signer> + Clone, T> MakeBundleBuilder<'a, C> for Surround<'a, C, T>
where T: MakeBundleBuilder<'a, C>,