pub type GetResponse = Option<(Metadata, Option<ContentRange>, PayloadStream)>;Expand description
Service response for StorageService::get_object.
Aliased Type§
pub enum GetResponse {
None,
Some((Metadata, Option<ContentRange>, Pin<Box<dyn Stream<Item = Result<Bytes, Error>> + Send>>)),
}