pub type GetResponse = Option<(Metadata, PayloadStream)>;
Service response for get operations.
pub enum GetResponse { None, Some((Metadata, Pin<Box<dyn Stream<Item = Result<Bytes, Error>> + Send>>)), }
No value.
Some value of type T.
T