pub enum CompileOption {
ArraySize {
length: bool,
all: bool,
},
Eof {
common: bool,
},
Register {
restore: bool,
},
Allocator {
enabled: bool,
common: bool,
size: usize,
},
Variable {
initialize: bool,
},
}Variants§
Trait Implementations§
Source§impl Clone for CompileOption
impl Clone for CompileOption
Source§fn clone(&self) -> CompileOption
fn clone(&self) -> CompileOption
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CompileOption
impl Debug for CompileOption
Source§impl PartialEq for CompileOption
impl PartialEq for CompileOption
impl Eq for CompileOption
impl StructuralPartialEq for CompileOption
Auto Trait Implementations§
impl Freeze for CompileOption
impl RefUnwindSafe for CompileOption
impl Send for CompileOption
impl Sync for CompileOption
impl Unpin for CompileOption
impl UnwindSafe for CompileOption
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