pub struct ReplStep {
pub output: String,
pub error: String,
pub exit: bool,
}Expand description
Outcome of feeding a single line into the REPL. Output and error are
stringified for the driver to emit; exit requests termination.
Fields§
§output: String§error: String§exit: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for ReplStep
impl RefUnwindSafe for ReplStep
impl Send for ReplStep
impl Sync for ReplStep
impl Unpin for ReplStep
impl UnsafeUnpin for ReplStep
impl UnwindSafe for ReplStep
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