pub trait List:
Unpin
+ Send
+ Sync {
// Required method
fn next(
&mut self,
) -> impl Future<Output = Result<Option<Entry>, Error>> + MaybeSend;
}Expand description
List is returned by Service to stream entries for a list operation.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.