[][src]Struct dune::shell::Shell

pub struct Shell {
    pub directory: PathBuf,
    pub machine: Machine,
    pub is_done: bool,
}

Fields

directory: PathBufmachine: Machineis_done: bool

Methods

impl Shell[src]

pub fn new() -> Self[src]

pub fn run(&mut self)[src]

pub fn print_stack(&mut self)[src]

pub fn clear_stack(&mut self)[src]

pub fn wd(&mut self)[src]

pub fn mv(&self, old: &str, new: &str)[src]

pub fn rm(&self, path: &str)[src]

pub fn mkdir(&self, path: &str)[src]

pub fn mkf(&self, path: &str)[src]

pub fn ls(&mut self, dir: Option<String>)[src]

pub fn cd(&mut self, dir: &str)[src]

pub fn sh(&mut self, cmd: &str)[src]

pub fn clear(&mut self)[src]

pub fn exit(&mut self)[src]

Trait Implementations

impl Clone for Shell[src]

Auto Trait Implementations

impl Unpin for Shell

impl !Sync for Shell

impl !Send for Shell

impl !UnwindSafe for Shell

impl !RefUnwindSafe for Shell

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]