Struct wast::core::InlineExport
source · pub struct InlineExport<'a> {
pub names: Vec<&'a str>,
}
Expand description
A listing of inline (export "foo")
statements on a WebAssembly item in
its textual format.
Fields§
§names: Vec<&'a str>
The extra names to export an item as, if any.
Trait Implementations§
source§impl<'a> Debug for InlineExport<'a>
impl<'a> Debug for InlineExport<'a>
source§impl<'a> Default for InlineExport<'a>
impl<'a> Default for InlineExport<'a>
source§fn default() -> InlineExport<'a>
fn default() -> InlineExport<'a>
Returns the “default value” for a type. Read more
source§impl<'a> Parse<'a> for InlineExport<'a>
impl<'a> Parse<'a> for InlineExport<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for InlineExport<'a>
impl<'a> Send for InlineExport<'a>
impl<'a> Sync for InlineExport<'a>
impl<'a> Unpin for InlineExport<'a>
impl<'a> UnwindSafe for InlineExport<'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