pub struct WriteStruct { /* private fields */ }
Expand description

Structure containing the input data to verify and/or result to return when the MockStream’s write function is called

Implementations

Set the result to be returned for any write() calls

Note: This will be ignored if set_input is also used

Arguments
  • result - The UartResult to return in future write() calls
Examples
use rust_uart::*;
use rust_uart::mock::*;

fn test_write_error() {
    let mut mock = MockStream::default();

    mock.write
        .set_result(Err(UartError::GenericError.into()));

    let connection = Connection {
        stream: Box::new(mock),
    };

    let packet: [u8; 40] = [0; 40];

    assert_eq!(
        connection.write(&packet).unwrap_err(),
        UartError::GenericError
    );
}

Set the input to validate for any write() calls

Arguments
  • input - The input data expected from write() calls
Examples
use rust_uart::*;
use rust_uart::mock::*;

fn test_write_good() {
    let mut mock = MockStream::default();

    mock.write.set_input(vec![0, 1, 2, 3]);

    let connection = Connection {
        stream: Box::new(mock),
    };

    let packet: [u8; 4] = [0, 1, 2, 3];

    assert_eq!(connection.write(&packet), Ok(()));
}

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.