pub trait AdvanceAsync {
type Error;
// Required method
fn poll_advance(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Result<(), Self::Error>>;
}pub trait AdvanceAsync {
type Error;
// Required method
fn poll_advance(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Result<(), Self::Error>>;
}