pub enum CommandOutput {
Str(String),
Bin(Vec<u8>),
}Variants§
Trait Implementations§
source§impl Clone for CommandOutput
impl Clone for CommandOutput
source§fn clone(&self) -> CommandOutput
fn clone(&self) -> CommandOutput
Returns a copy 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 CommandOutput
impl Debug for CommandOutput
source§impl<'de> Deserialize<'de> for CommandOutput
impl<'de> Deserialize<'de> for CommandOutput
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 Hash for CommandOutput
impl Hash for CommandOutput
source§impl PartialEq for CommandOutput
impl PartialEq for CommandOutput
source§fn eq(&self, other: &CommandOutput) -> bool
fn eq(&self, other: &CommandOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for CommandOutput
impl Serialize for CommandOutput
impl Eq for CommandOutput
impl StructuralEq for CommandOutput
impl StructuralPartialEq for CommandOutput
Auto Trait Implementations§
impl RefUnwindSafe for CommandOutput
impl Send for CommandOutput
impl Sync for CommandOutput
impl Unpin for CommandOutput
impl UnwindSafe for CommandOutput
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