pub enum ShellProcState {
Idle,
SubprocessRunning,
Terminated,
}
Expand description
§ShellProcState
ShellProcState represents the current shell state
Variants§
Trait Implementations§
Source§impl Clone for ShellProcState
impl Clone for ShellProcState
Source§fn clone(&self) -> ShellProcState
fn clone(&self) -> ShellProcState
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 ShellProcState
impl Debug for ShellProcState
Source§impl PartialEq for ShellProcState
impl PartialEq for ShellProcState
impl Copy for ShellProcState
impl StructuralPartialEq for ShellProcState
Auto Trait Implementations§
impl Freeze for ShellProcState
impl RefUnwindSafe for ShellProcState
impl Send for ShellProcState
impl Sync for ShellProcState
impl Unpin for ShellProcState
impl UnwindSafe for ShellProcState
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