pub struct StreamRedirectConfig {
pub stdout_file: Option<PathBuf>,
pub stderr_file: Option<PathBuf>,
}Expand description
Resolved process stream redirection configuration.
Fields§
§stdout_file: Option<PathBuf>File receiving stdout bytes, if stdout redirection is enabled.
stderr_file: Option<PathBuf>File receiving stderr bytes, if stderr redirection is enabled.
Implementations§
Trait Implementations§
Source§impl Clone for StreamRedirectConfig
impl Clone for StreamRedirectConfig
Source§fn clone(&self) -> StreamRedirectConfig
fn clone(&self) -> StreamRedirectConfig
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 StreamRedirectConfig
impl Debug for StreamRedirectConfig
impl Eq for StreamRedirectConfig
Source§impl PartialEq for StreamRedirectConfig
impl PartialEq for StreamRedirectConfig
impl StructuralPartialEq for StreamRedirectConfig
Auto Trait Implementations§
impl Freeze for StreamRedirectConfig
impl RefUnwindSafe for StreamRedirectConfig
impl Send for StreamRedirectConfig
impl Sync for StreamRedirectConfig
impl Unpin for StreamRedirectConfig
impl UnsafeUnpin for StreamRedirectConfig
impl UnwindSafe for StreamRedirectConfig
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.