pub enum ExecuteShell {
Powershell,
Cmd,
}Variants§
Trait Implementations§
Source§impl Clone for ExecuteShell
impl Clone for ExecuteShell
Source§fn clone(&self) -> ExecuteShell
fn clone(&self) -> ExecuteShell
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 ExecuteShell
impl Debug for ExecuteShell
Source§impl<'de> Deserialize<'de> for ExecuteShell
impl<'de> Deserialize<'de> for ExecuteShell
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 From<ExecuteShell> for Shell
impl From<ExecuteShell> for Shell
Source§fn from(s: ExecuteShell) -> Self
fn from(s: ExecuteShell) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ExecuteShell
impl PartialEq for ExecuteShell
Source§fn eq(&self, other: &ExecuteShell) -> bool
fn eq(&self, other: &ExecuteShell) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExecuteShell
impl Serialize for ExecuteShell
impl Copy for ExecuteShell
impl Eq for ExecuteShell
impl StructuralPartialEq for ExecuteShell
Auto Trait Implementations§
impl Freeze for ExecuteShell
impl RefUnwindSafe for ExecuteShell
impl Send for ExecuteShell
impl Sync for ExecuteShell
impl Unpin for ExecuteShell
impl UnsafeUnpin for ExecuteShell
impl UnwindSafe for ExecuteShell
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