Struct boxxy::shell::Shell [] [src]

pub struct Shell { /* fields omitted */ }

The struct that keeps track of the user interface.

Methods

impl Shell
[src]

[src]

Initializes a shell. Takes a Toolbox that contains the available commands. The toolbox is also used to configure tab completion.

use boxxy::{Shell, Toolbox};

let toolbox = Toolbox::new();
let shell = Shell::new(toolbox);

[src]

Replace the readline interface with a plain stdin/stdout interface.

use boxxy::{Shell, Toolbox};

let toolbox = Toolbox::new();
let mut shell = Shell::new(toolbox);
shell.downgrade();
shell.run();

[src]

[src]

[src]

Insert a Command into the Toolbox.

use boxxy::{self, Shell, Command, Toolbox};

let toolbox = Toolbox::empty();
let mut shell = Shell::new(toolbox);
shell.insert("ls", Command::Native(boxxy::busybox::ls));

[src]

[src]

Run the input loop. This doesn't return until the shell is exited.

use boxxy::{Shell, Toolbox};

let toolbox = Toolbox::new();
let mut shell = Shell::new(toolbox);

// run the loop
shell.run();

Trait Implementations

impl Read for Shell
[src]

[src]

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

[src]

🔬 This is a nightly-only experimental API. (read_initializer)

Determines if this Reader can work with buffers of uninitialized memory. Read more

1.0.0
[src]

Read all bytes until EOF in this source, placing them into buf. Read more

1.0.0
[src]

Read all bytes until EOF in this source, placing them into buf. Read more

1.6.0
[src]

Read the exact number of bytes required to fill buf. Read more

1.0.0
[src]

Creates a "by reference" adaptor for this instance of Read. Read more

1.0.0
[src]

Transforms this Read instance to an [Iterator] over its bytes. Read more

[src]

🔬 This is a nightly-only experimental API. (io)

the semantics of a partial read/write of where errors happen is currently unclear and may change

Transforms this Read instance to an [Iterator] over [char]s. Read more

1.0.0
[src]

Creates an adaptor which will chain this stream with another. Read more

1.0.0
[src]

Creates an adaptor which will read at most limit bytes from it. Read more

impl Write for Shell
[src]

[src]

Write a buffer into this object, returning how many bytes were written. Read more

[src]

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more

1.0.0
[src]

Attempts to write an entire buffer into this write. Read more

1.0.0
[src]

Writes a formatted string into this writer, returning any error encountered. Read more

1.0.0
[src]

Creates a "by reference" adaptor for this instance of Write. Read more