#[non_exhaustive]pub enum OutputStreamType {
Stdout,
Stderr,
PreHook,
PostHook,
System,
}Expand description
Output stream source for update execution output lines.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Trait Implementations§
Source§impl Clone for OutputStreamType
impl Clone for OutputStreamType
Source§fn clone(&self) -> OutputStreamType
fn clone(&self) -> OutputStreamType
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 OutputStreamType
Source§impl Debug for OutputStreamType
impl Debug for OutputStreamType
Source§impl Default for OutputStreamType
impl Default for OutputStreamType
Source§fn default() -> OutputStreamType
fn default() -> OutputStreamType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputStreamType
impl<'de> Deserialize<'de> for OutputStreamType
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<OutputStreamType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<OutputStreamType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for OutputStreamType
impl Display for OutputStreamType
impl Eq for OutputStreamType
Source§impl FromStr for OutputStreamType
impl FromStr for OutputStreamType
Source§type Err = ParseOutputStreamTypeError
type Err = ParseOutputStreamTypeError
The associated error which can be returned from parsing.
Source§fn from_str(
s: &str,
) -> Result<OutputStreamType, <OutputStreamType as FromStr>::Err>
fn from_str( s: &str, ) -> Result<OutputStreamType, <OutputStreamType as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl PartialEq for OutputStreamType
impl PartialEq for OutputStreamType
Source§fn eq(&self, other: &OutputStreamType) -> bool
fn eq(&self, other: &OutputStreamType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for OutputStreamType
impl Serialize for OutputStreamType
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for OutputStreamType
Auto Trait Implementations§
impl Freeze for OutputStreamType
impl RefUnwindSafe for OutputStreamType
impl Send for OutputStreamType
impl Sync for OutputStreamType
impl Unpin for OutputStreamType
impl UnsafeUnpin for OutputStreamType
impl UnwindSafe for OutputStreamType
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.