[][src]Struct walrus::passes::Roots

pub struct Roots { /* fields omitted */ }

Set of all root used items in a wasm module.

Methods

impl Roots[src]

pub fn new() -> Roots[src]

Creates a new set of empty roots.

pub fn push_func(&mut self, func: FunctionId) -> &mut Roots[src]

Adds a new function to the set of roots

pub fn push_table(&mut self, table: TableId) -> &mut Roots[src]

Adds a new table to the set of roots

pub fn push_memory(&mut self, memory: MemoryId) -> &mut Roots[src]

Adds a new memory to the set of roots

pub fn push_global(&mut self, global: GlobalId) -> &mut Roots[src]

Adds a new global to the set of roots

Trait Implementations

impl Default for Roots[src]

impl Debug for Roots[src]

Auto Trait Implementations

impl Send for Roots

impl Sync for Roots

impl Unpin for Roots

impl UnwindSafe for Roots

impl RefUnwindSafe for Roots

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]