pub struct ParseOptions { /* private fields */ }Implementations§
Source§impl ParseOptions
impl ParseOptions
Sourcepub fn parse_bytecode(&mut self, parse: bool) -> &mut ParseOptions
pub fn parse_bytecode(&mut self, parse: bool) -> &mut ParseOptions
Turns on or off parsing of bytecode from the Code attributes of methods. If parsing is enabled, the CodeData structure’s optional bytecode field will be populated (or parsing will fail entirely if bytecode parsing failed). If parsing is disabled, the CodeData structure’s optional bytecode field will be set to None. Parsing is enabled by default, but can be disabled to speed up parsing in cases where the parsed bytecode is not needed.
Trait Implementations§
Source§impl Debug for ParseOptions
impl Debug for ParseOptions
Auto Trait Implementations§
impl Freeze for ParseOptions
impl RefUnwindSafe for ParseOptions
impl Send for ParseOptions
impl Sync for ParseOptions
impl Unpin for ParseOptions
impl UnwindSafe for ParseOptions
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