[][src]Struct lc3tools_sys::root::lc3::core::Assembler

#[repr(C)]pub struct Assembler {
    pub file_buffer: vector,
    pub logger: AssemblerLogger,
    pub enable_liberal_asm: bool,
    pub encoder: InstructionEncoder,
}

Fields

file_buffer: vectorlogger: AssemblerLoggerenable_liberal_asm: boolencoder: InstructionEncoder

Implementations

impl Assembler[src]

pub unsafe fn assemble(&mut self, buffer: *mut istream) -> shared_ptr[src]

pub unsafe fn setLiberalAsm(&mut self, enable_liberal_asm: bool)[src]

Trait Implementations

impl Default for Assembler[src]

Auto Trait Implementations

impl !RefUnwindSafe for Assembler

impl !Send for Assembler

impl !Sync for Assembler

impl Unpin for Assembler

impl !UnwindSafe for Assembler

Blanket Implementations

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

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

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

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

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

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.