pub trait ConsoleRecv<T>where
    T: ConsoleDevice + ?Sized,{
    // Required method
    fn recv(device: &T, timeout: Duration, quiet: bool) -> Result<Self>
       where Self: Sized;
}

Required Methods§

source

fn recv(device: &T, timeout: Duration, quiet: bool) -> Result<Self>where Self: Sized,

Implementors§

source§

impl<T, U> ConsoleRecv<T> for Uwhere T: ConsoleDevice + ?Sized, U: DeserializeOwned,