pub enum CommandExecOutputStream {
Stdout,
Stderr,
}Expand description
Stream label for command/exec/outputDelta notifications.
JSON schema
{
"description": "Stream label for `command/exec/outputDelta` notifications.",
"oneOf": [
{
"description": "stdout stream. PTY mode multiplexes terminal output here.",
"type": "string",
"enum": [
"stdout"
]
},
{
"description": "stderr stream.",
"type": "string",
"enum": [
"stderr"
]
}
]
}Variants§
Trait Implementations§
Source§impl Clone for CommandExecOutputStream
impl Clone for CommandExecOutputStream
Source§fn clone(&self) -> CommandExecOutputStream
fn clone(&self) -> CommandExecOutputStream
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 CommandExecOutputStream
impl Debug for CommandExecOutputStream
Source§impl<'de> Deserialize<'de> for CommandExecOutputStream
impl<'de> Deserialize<'de> for CommandExecOutputStream
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 Display for CommandExecOutputStream
impl Display for CommandExecOutputStream
Source§impl FromStr for CommandExecOutputStream
impl FromStr for CommandExecOutputStream
Source§impl Hash for CommandExecOutputStream
impl Hash for CommandExecOutputStream
Source§impl Ord for CommandExecOutputStream
impl Ord for CommandExecOutputStream
Source§fn cmp(&self, other: &CommandExecOutputStream) -> Ordering
fn cmp(&self, other: &CommandExecOutputStream) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CommandExecOutputStream
impl PartialEq for CommandExecOutputStream
Source§fn eq(&self, other: &CommandExecOutputStream) -> bool
fn eq(&self, other: &CommandExecOutputStream) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for CommandExecOutputStream
impl PartialOrd for CommandExecOutputStream
Source§impl Serialize for CommandExecOutputStream
impl Serialize for CommandExecOutputStream
Source§impl TryFrom<&String> for CommandExecOutputStream
impl TryFrom<&String> for CommandExecOutputStream
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for CommandExecOutputStream
impl TryFrom<&str> for CommandExecOutputStream
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for CommandExecOutputStream
impl TryFrom<String> for CommandExecOutputStream
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for CommandExecOutputStream
impl Eq for CommandExecOutputStream
impl StructuralPartialEq for CommandExecOutputStream
Auto Trait Implementations§
impl Freeze for CommandExecOutputStream
impl RefUnwindSafe for CommandExecOutputStream
impl Send for CommandExecOutputStream
impl Sync for CommandExecOutputStream
impl Unpin for CommandExecOutputStream
impl UnsafeUnpin for CommandExecOutputStream
impl UnwindSafe for CommandExecOutputStream
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.