pub trait AsyncStorage<T>: Storage<T> + Unpin {
type Output;
// Required method
fn finish(self, pushed: usize) -> Self::Output;
}
Expand description
Asynchronous extension to Storage
pub trait AsyncStorage<T>: Storage<T> + Unpin {
type Output;
// Required method
fn finish(self, pushed: usize) -> Self::Output;
}
Asynchronous extension to Storage