[][src]Struct lc3tools_sys::root::lc3::core::asmbl::Tokenizer

#[repr(C)]pub struct Tokenizer {
    pub buffer: *mut istream,
    pub get_new_line: bool,
    pub return_new_line: bool,
    pub line: string,
    pub row: u32,
    pub col: u32,
    pub done: bool,
    pub enable_liberal_asm: bool,
}

Fields

buffer: *mut istreamget_new_line: boolreturn_new_line: boolline: stringrow: u32col: u32done: boolenable_liberal_asm: bool

Implementations

impl Tokenizer[src]

pub unsafe fn isDone(&self) -> bool[src]

pub unsafe fn new(buffer: *mut istream, enable_liberal_asm: bool) -> Self[src]

Trait Implementations

impl Default for Tokenizer[src]

Auto Trait Implementations

impl !RefUnwindSafe for Tokenizer

impl !Send for Tokenizer

impl !Sync for Tokenizer

impl Unpin for Tokenizer

impl !UnwindSafe for Tokenizer

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.