Skip to main content

Readable

Trait Readable 

Source
pub trait Readable: ErrorType {
    // Required method
    async fn readable(&mut self) -> Result<(), Self::Error>;
}
Expand description

Re-export the edge-nal crate

Required Methods§

Source

async fn readable(&mut self) -> Result<(), Self::Error>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<T> Readable for &mut T
where T: Readable,

Source§

async fn readable(&mut self) -> Result<(), <&mut T as ErrorType>::Error>

Implementors§