pub trait DisplayBaseExt: DisplayBase {
// Provided method
fn poll_for_reply<R: TryParseFd>(
&mut self,
cookie: Cookie<R>,
) -> Result<Option<R>> { ... }
}Provided Methods§
Sourcefn poll_for_reply<R: TryParseFd>(
&mut self,
cookie: Cookie<R>,
) -> Result<Option<R>>
fn poll_for_reply<R: TryParseFd>( &mut self, cookie: Cookie<R>, ) -> Result<Option<R>>
Poll for a reply matching the given sequence number.
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.