pub struct CheckSettings {
pub ignore_case: bool,
pub input_format: TextFormat,
pub output_format: TextFormat,
}
Expand description
Settings for running tests on a serial port.
Fields§
§ignore_case: bool
Ignore response case mode.
input_format: TextFormat
Format of the data written to the serial port.
output_format: TextFormat
Format of the data received by the serial port.
Trait Implementations§
Source§impl Default for CheckSettings
impl Default for CheckSettings
Source§fn default() -> CheckSettings
fn default() -> CheckSettings
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CheckSettings
impl RefUnwindSafe for CheckSettings
impl Send for CheckSettings
impl Sync for CheckSettings
impl Unpin for CheckSettings
impl UnwindSafe for CheckSettings
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more