pub trait BlobNameSupport<'a> {
    type O;

    fn with_blob_name(self, blob_name: &'a str) -> Self::O;
}

Required Associated Types

Required Methods

Implementors