pub enum ShellSetup {
Bash,
Fish,
Zsh,
None,
}Variants§
Trait Implementations§
Source§impl Clone for ShellSetup
impl Clone for ShellSetup
Source§fn clone(&self) -> ShellSetup
fn clone(&self) -> ShellSetup
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 ShellSetup
impl Debug for ShellSetup
Source§impl<'de> Deserialize<'de> for ShellSetup
impl<'de> Deserialize<'de> for ShellSetup
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 Ord for ShellSetup
impl Ord for ShellSetup
Source§fn cmp(&self, other: &ShellSetup) -> Ordering
fn cmp(&self, other: &ShellSetup) -> Ordering
1.21.0 · 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 ShellSetup
impl PartialEq for ShellSetup
Source§impl PartialOrd for ShellSetup
impl PartialOrd for ShellSetup
Source§impl Serialize for ShellSetup
impl Serialize for ShellSetup
Source§impl ValueEnum for ShellSetup
impl ValueEnum for ShellSetup
impl Copy for ShellSetup
impl Eq for ShellSetup
impl StructuralPartialEq for ShellSetup
Auto Trait Implementations§
impl Freeze for ShellSetup
impl RefUnwindSafe for ShellSetup
impl Send for ShellSetup
impl Sync for ShellSetup
impl Unpin for ShellSetup
impl UnwindSafe for ShellSetup
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