pub struct Config {
pub trace_parser: bool,
pub trace_checker: bool,
pub std_in: Option<Box<dyn Read + Sync + Send>>,
pub std_out: Option<Box<dyn Write + Sync + Send>>,
pub std_err: Option<Box<dyn Write + Sync + Send>>,
}
Fields§
§trace_parser: bool
print debug info in parser
trace_checker: bool
print debug info in checker
std_in: Option<Box<dyn Read + Sync + Send>>
custom std in
std_out: Option<Box<dyn Write + Sync + Send>>
custom std out
std_err: Option<Box<dyn Write + Sync + Send>>
custom std err
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl !RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl !UnwindSafe for Config
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