pub trait Builder: Send + Sync {
    // Required method
    fn metadata<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<OutputStream<Metadata>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Represents an instance of a builder with a single crate.

The builder is able to produce artifacts for the crate.

Required Methods§

source

fn metadata<'life0, 'async_trait>( &'life0 self ) -> Pin<Box<dyn Future<Output = Result<OutputStream<Metadata>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Build crate metadata.

Implementors§