pub trait LogFlusherProxyInterface: Send + Sync {
type WaitUntilFlushedResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn wait_until_flushed(&self) -> Self::WaitUntilFlushedResponseFut;
}Required Associated Types§
Required Methods§
fn wait_until_flushed(&self) -> Self::WaitUntilFlushedResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".