fidl_fuchsia_fxfs

Trait BlobCreatorProxyInterface

Source
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§