pub struct CompileOption<E: ErrorHandler + Clone> {
pub scanning: ScanOption,
pub parsing: ParseOption,
pub conversion: ConvertOption,
pub transformation: TransformOption,
pub codegen: CodeGenerateOption,
pub error_handler: E,
}
Fields§
§scanning: ScanOption
§parsing: ParseOption
§conversion: ConvertOption
§transformation: TransformOption
§codegen: CodeGenerateOption
§error_handler: E
Auto Trait Implementations§
impl<E> Freeze for CompileOption<E>where
E: Freeze,
impl<E> RefUnwindSafe for CompileOption<E>where
E: RefUnwindSafe,
impl<E> Send for CompileOption<E>where
E: Send,
impl<E> Sync for CompileOption<E>where
E: Sync,
impl<E> Unpin for CompileOption<E>where
E: Unpin,
impl<E> UnwindSafe for CompileOption<E>where
E: UnwindSafe,
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