pub trait BlobCreatorProxyInterface: Send + Sync {
    type CreateResponseFut: Future<Output = Result<BlobCreatorCreateResult, Error>> + Send;

    // Required method
    fn create(
        &self,
        hash: &[u8; 32],
        allow_existing: bool
    ) -> Self::CreateResponseFut;
}

Required Associated Types§

Required Methods§

source

fn create( &self, hash: &[u8; 32], allow_existing: bool ) -> Self::CreateResponseFut

Implementors§