#[non_exhaustive]pub struct IoConfiguration {
pub start_hex_pattern: Option<String>,
pub end_hex_pattern: Option<String>,
pub strip_pattern: bool,
pub io_hardware: Option<IoHardware>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.start_hex_pattern: Option<String>§end_hex_pattern: Option<String>§strip_pattern: bool§io_hardware: Option<IoHardware>Trait Implementations§
Source§impl Clone for IoConfiguration
impl Clone for IoConfiguration
Source§fn clone(&self) -> IoConfiguration
fn clone(&self) -> IoConfiguration
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IoConfiguration
impl Debug for IoConfiguration
Source§impl Hash for IoConfiguration
impl Hash for IoConfiguration
Source§impl Ord for IoConfiguration
impl Ord for IoConfiguration
Source§fn cmp(&self, other: &IoConfiguration) -> Ordering
fn cmp(&self, other: &IoConfiguration) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IoConfiguration
impl PartialEq for IoConfiguration
Source§impl PartialOrd for IoConfiguration
impl PartialOrd for IoConfiguration
impl Eq for IoConfiguration
impl StructuralPartialEq for IoConfiguration
Auto Trait Implementations§
impl Freeze for IoConfiguration
impl RefUnwindSafe for IoConfiguration
impl Send for IoConfiguration
impl Sync for IoConfiguration
impl Unpin for IoConfiguration
impl UnsafeUnpin for IoConfiguration
impl UnwindSafe for IoConfiguration
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