pub struct Zsh<O, W> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<O, W> Shell<O, W> for Zsh<O, W>
impl<O, W> Shell<O, W> for Zsh<O, W>
type Err = Error
fn is_avail(&self, name: &str) -> bool
fn set_buff(&mut self, w: W)
fn write_cmd(&mut self, name: &str, opt: &O) -> Result<(), Self::Err>
fn write_opt(&mut self, name: &str, opt: &O) -> Result<(), Self::Err>
fn write_pos(&mut self, name: &str, opt: &O) -> Result<(), Self::Err>
fn write_val(&mut self, val: &OsStr, _: &O) -> Result<(), Self::Err>
fn write_eq(&mut self, name: &str, val: &OsStr, _: &O) -> Result<(), Self::Err>
fn finish(&mut self) -> Result<(), Self::Err>
fn take_buff(&mut self) -> Option<W>
Auto Trait Implementations§
impl<O, W> Freeze for Zsh<O, W>where
W: Freeze,
impl<O, W> RefUnwindSafe for Zsh<O, W>where
W: RefUnwindSafe,
O: RefUnwindSafe,
impl<O, W> Send for Zsh<O, W>
impl<O, W> Sync for Zsh<O, W>
impl<O, W> Unpin for Zsh<O, W>
impl<O, W> UnwindSafe for Zsh<O, W>where
W: UnwindSafe,
O: UnwindSafe,
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