pub type DatastoreByteStream = Pin<Box<dyn Stream<Item = Result<Bytes, DatastoreError>> + Send>>;Expand description
Type alias for the byte stream returned by
Datastore::list_buckets_stream and
Datastore::list_keys_stream.
Each Bytes item is one bucket name or key. The stream may
surface a DatastoreError mid-iteration; transports translate
that into a wire-level error response and stop emitting frames.
Aliased Typeยง
pub struct DatastoreByteStream { /* private fields */ }