pub enum ZshEmulationMode {
Zsh,
Sh,
Ksh,
Csh,
}Expand description
Target emulation mode for zsh’s emulate behavior.
Variants§
Zsh
Native zsh behavior.
Sh
sh compatibility mode.
Ksh
ksh compatibility mode.
Csh
csh compatibility mode.
Trait Implementations§
Source§impl Clone for ZshEmulationMode
impl Clone for ZshEmulationMode
Source§fn clone(&self) -> ZshEmulationMode
fn clone(&self) -> ZshEmulationMode
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 ZshEmulationMode
impl Debug for ZshEmulationMode
Source§impl Hash for ZshEmulationMode
impl Hash for ZshEmulationMode
Source§impl PartialEq for ZshEmulationMode
impl PartialEq for ZshEmulationMode
impl Copy for ZshEmulationMode
impl Eq for ZshEmulationMode
impl StructuralPartialEq for ZshEmulationMode
Auto Trait Implementations§
impl Freeze for ZshEmulationMode
impl RefUnwindSafe for ZshEmulationMode
impl Send for ZshEmulationMode
impl Sync for ZshEmulationMode
impl Unpin for ZshEmulationMode
impl UnsafeUnpin for ZshEmulationMode
impl UnwindSafe for ZshEmulationMode
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