pub trait Scale {
    type Resource;

    fn replicas<'life0, 'life1, 'async_trait>(
        &'life0 self,
        name: &'life1 str,
        replicas: i32
    ) -> Pin<Box<dyn Future<Output = Result<Self::Resource, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors