pub struct RawOutputOptions {
pub stdout_collection_options: RawCollectionOptions,
pub stderr_collection_options: RawCollectionOptions,
}Expand description
Options for raw byte output collection from stdout and stderr.
Fields§
§stdout_collection_options: RawCollectionOptionsCollection options used for stdout.
stderr_collection_options: RawCollectionOptionsCollection options used for stderr.
Implementations§
Source§impl RawOutputOptions
impl RawOutputOptions
Sourcepub const fn symmetric(options: RawCollectionOptions) -> Self
pub const fn symmetric(options: RawCollectionOptions) -> Self
Use the same RawCollectionOptions for both stdout and stderr.
Trait Implementations§
Source§impl Clone for RawOutputOptions
impl Clone for RawOutputOptions
Source§fn clone(&self) -> RawOutputOptions
fn clone(&self) -> RawOutputOptions
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 moreimpl Copy for RawOutputOptions
Source§impl Debug for RawOutputOptions
impl Debug for RawOutputOptions
impl Eq for RawOutputOptions
Source§impl PartialEq for RawOutputOptions
impl PartialEq for RawOutputOptions
impl StructuralPartialEq for RawOutputOptions
Auto Trait Implementations§
impl Freeze for RawOutputOptions
impl RefUnwindSafe for RawOutputOptions
impl Send for RawOutputOptions
impl Sync for RawOutputOptions
impl Unpin for RawOutputOptions
impl UnsafeUnpin for RawOutputOptions
impl UnwindSafe for RawOutputOptions
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