pub enum LoggingType {
StdoutOnly,
StderrOnly,
StdoutAndStderr,
StdoutAndStderrMerged,
}
Expand description
Enum representing logging type of a spawned process.
Variants§
StdoutOnly
Collect logs only from standard output stream.
StderrOnly
Collect logs only from standard error stream.
StdoutAndStderr
Collect logs from both: standard output and error streams.
StdoutAndStderrMerged
Collect logs from one stream, created by merged standard output and error streams.
Trait Implementations§
Source§impl Clone for LoggingType
impl Clone for LoggingType
Source§fn clone(&self) -> LoggingType
fn clone(&self) -> LoggingType
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 LoggingType
impl Debug for LoggingType
Source§impl<'de> Deserialize<'de> for LoggingType
impl<'de> Deserialize<'de> for LoggingType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LoggingType
impl PartialEq for LoggingType
Source§impl Serialize for LoggingType
impl Serialize for LoggingType
impl Eq for LoggingType
impl StructuralPartialEq for LoggingType
Auto Trait Implementations§
impl Freeze for LoggingType
impl RefUnwindSafe for LoggingType
impl Send for LoggingType
impl Sync for LoggingType
impl Unpin for LoggingType
impl UnwindSafe for LoggingType
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