[−][src]Struct lc3::iostream_handler::IOStreamHandler
A standard instruction handler with Read/Write streams for input/output.
Trait Implementations
impl<R: Read, W: Write> InstructionHandler for IOStreamHandler<R, W>[src]
type Context = (R, W)
Handler context.
type Err = IOError
Err return type after processing instructions. TODO: Convert Err into std::ops::Try once it is stabilized Read more
fn create_vm(initial_context: Self::Context) -> VM<Self>[src]
fn process_instruction(
vm_state: &mut VMState,
context: &mut Self::Context,
instruction: Instruction
) -> IOResult<()>[src]
vm_state: &mut VMState,
context: &mut Self::Context,
instruction: Instruction
) -> IOResult<()>
Auto Trait Implementations
impl<R, W> Send for IOStreamHandler<R, W> where
R: Send,
W: Send,
R: Send,
W: Send,
impl<R, W> Unpin for IOStreamHandler<R, W> where
R: Unpin,
W: Unpin,
R: Unpin,
W: Unpin,
impl<R, W> Sync for IOStreamHandler<R, W> where
R: Sync,
W: Sync,
R: Sync,
W: Sync,
impl<R, W> UnwindSafe for IOStreamHandler<R, W> where
R: UnwindSafe,
W: UnwindSafe,
R: UnwindSafe,
W: UnwindSafe,
impl<R, W> RefUnwindSafe for IOStreamHandler<R, W> where
R: RefUnwindSafe,
W: RefUnwindSafe,
R: RefUnwindSafe,
W: RefUnwindSafe,
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,