pub struct FormatterConfig {
pub cmd: String,
pub args: Vec<String>,
pub enabled: bool,
pub stdin: bool,
}Fields§
§cmd: String§args: Vec<String>§enabled: bool§stdin: boolTrait Implementations§
Source§impl Clone for FormatterConfig
impl Clone for FormatterConfig
Source§fn clone(&self) -> FormatterConfig
fn clone(&self) -> FormatterConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FormatterConfig
impl Debug for FormatterConfig
Source§impl PartialEq for FormatterConfig
impl PartialEq for FormatterConfig
Source§fn eq(&self, other: &FormatterConfig) -> bool
fn eq(&self, other: &FormatterConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FormatterConfig
Auto Trait Implementations§
impl Freeze for FormatterConfig
impl RefUnwindSafe for FormatterConfig
impl Send for FormatterConfig
impl Sync for FormatterConfig
impl Unpin for FormatterConfig
impl UnsafeUnpin for FormatterConfig
impl UnwindSafe for FormatterConfig
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