Struct rust_uart::mock::WriteStruct
source · [−]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
sourceimpl WriteStruct
impl WriteStruct
sourcepub fn set_result(&mut self, result: UartResult<()>)
pub fn set_result(&mut self, result: UartResult<()>)
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
);
}
sourcepub fn set_input(&mut self, input: Vec<u8>)
pub fn set_input(&mut self, input: Vec<u8>)
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
impl !RefUnwindSafe for WriteStruct
impl Send for WriteStruct
impl !Sync for WriteStruct
impl Unpin for WriteStruct
impl UnwindSafe for WriteStruct
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more