pub struct CommConfig {
pub suppress_col1: bool,
pub suppress_col2: bool,
pub suppress_col3: bool,
pub case_insensitive: bool,
pub order_check: OrderCheck,
pub output_delimiter: Option<Vec<u8>>,
pub total: bool,
pub zero_terminated: bool,
}Expand description
Configuration for the comm command.
Fields§
§suppress_col1: bool§suppress_col2: bool§suppress_col3: bool§case_insensitive: bool§order_check: OrderCheck§output_delimiter: Option<Vec<u8>>§total: bool§zero_terminated: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for CommConfig
impl RefUnwindSafe for CommConfig
impl Send for CommConfig
impl Sync for CommConfig
impl Unpin for CommConfig
impl UnsafeUnpin for CommConfig
impl UnwindSafe for CommConfig
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more