pub struct WatLocal {
pub name: Option<String>,
pub ty: WatTypeKind,
}Expand description
A local variable in a WAT function.
Fields§
§name: Option<String>Optional name of the local variable.
ty: WatTypeKindType of the local variable.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WatLocal
impl RefUnwindSafe for WatLocal
impl Send for WatLocal
impl Sync for WatLocal
impl Unpin for WatLocal
impl UnsafeUnpin for WatLocal
impl UnwindSafe for WatLocal
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