pub struct LineOutputOptions {
pub line_parsing_options: LineParsingOptions,
pub stdout_collection_options: LineCollectionOptions,
pub stderr_collection_options: LineCollectionOptions,
}Expand description
Options for line output collection from stdout and stderr.
Fields§
§line_parsing_options: LineParsingOptionsOptions used for parsing stdout and stderr chunks into lines.
stdout_collection_options: LineCollectionOptionsCollection options used for stdout.
stderr_collection_options: LineCollectionOptionsCollection options used for stderr.
Trait Implementations§
Source§impl Clone for LineOutputOptions
impl Clone for LineOutputOptions
Source§fn clone(&self) -> LineOutputOptions
fn clone(&self) -> LineOutputOptions
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 LineOutputOptions
impl Debug for LineOutputOptions
Source§impl PartialEq for LineOutputOptions
impl PartialEq for LineOutputOptions
impl Copy for LineOutputOptions
impl Eq for LineOutputOptions
impl StructuralPartialEq for LineOutputOptions
Auto Trait Implementations§
impl Freeze for LineOutputOptions
impl RefUnwindSafe for LineOutputOptions
impl Send for LineOutputOptions
impl Sync for LineOutputOptions
impl Unpin for LineOutputOptions
impl UnsafeUnpin for LineOutputOptions
impl UnwindSafe for LineOutputOptions
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