[][src]Struct xi_rpc::test_utils::DummyReader

pub struct DummyReader(_, _);

Wraps an instance of mpsc::Receiver, providing convenience methods for parsing received messages.

Methods

impl DummyReader[src]

pub fn next_timeout(
    &mut self,
    timeout: Duration
) -> Option<Result<RpcObject, ReadError>>
[src]

Attempts to read a message, returning None if the wait exceeds timeout.

This method makes no assumptions about the contents of the message, and does no error handling.

pub fn expect_response(&mut self) -> Result<Value, RemoteError>[src]

Reads and parses a response object.

Panics

Panics if a non-response message is received, or if no message is received after a reasonable time.

pub fn expect_object(&mut self) -> RpcObject[src]

pub fn expect_rpc(&mut self, method: &str) -> RpcObject[src]

pub fn expect_nothing(&mut self)[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]