pub trait WaitForMessage {
    fn wait_for_message(self, message: &str) -> Result<(), WaitError>;
}
Expand description

Extension trait for io::Read to wait for a message to appear in the given stream.

Required Methods

Implementors