Struct Repl

Source
pub struct Repl { /* private fields */ }
Expand description

Run an read/evaluate/print/loop.

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let mut repl = spore_vm::repl::Repl::new(spore_vm::Vm::default())?;
    loop {
        if let Err(err) = repl.eval_next_input() {
            match err {
                rustyline::error::ReadlineError::Eof
                | rustyline::error::ReadlineError::Interrupted => return Ok(()),
                err => println!("{err}"),
            }
        }
    }
}

Implementations§

Source§

impl Repl

Source

pub fn new(vm: Vm) -> Result<Repl>

Create a new REPL.

Source

pub fn into_vm(self) -> Vm

Convert self into a Vm.

Source

pub fn as_vm_mut(&mut self) -> &mut Vm

Get the underlying Vm.

Source

pub fn as_vm(&self) -> &Vm

Get the underlying Vm.

Source

pub fn eval_next_input(&mut self) -> Result<ProtectedVal<'_>>

Evaluate the next user input. The input is read through stdin and the result is written through stdout.

Auto Trait Implementations§

§

impl !Freeze for Repl

§

impl !RefUnwindSafe for Repl

§

impl Send for Repl

§

impl !Sync for Repl

§

impl Unpin for Repl

§

impl !UnwindSafe for Repl

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.