pub struct LocalParser<'a> {
pub locals: Vec<Local<'a>>,
}Expand description
Parser for local instruction.
A single local instruction can generate multiple locals, hence this parser
Fields§
§locals: Vec<Local<'a>>All the locals associated with this local instruction.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for LocalParser<'a>
impl<'a> RefUnwindSafe for LocalParser<'a>
impl<'a> Send for LocalParser<'a>
impl<'a> Sync for LocalParser<'a>
impl<'a> Unpin for LocalParser<'a>
impl<'a> UnwindSafe for LocalParser<'a>
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