pub trait Readable: ErrorType {
// Required method
async fn readable(&mut self) -> Result<(), Self::Error>;
}Expand description
Re-export the edge-nal crate
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".