Struct finite_wasm::max_stack::FunctionState
source · pub struct FunctionState { /* private fields */ }Expand description
The per-function state used by the Visitor.
This type maintains the state accumulated during the analysis of a single function in a module.
If the same instance of this FunctionState is used to analyze multiple functions, it will
result in re-use of the backing allocations, and thus an improved performance.
Implementations§
source§impl FunctionState
impl FunctionState
Auto Trait Implementations§
impl RefUnwindSafe for FunctionState
impl Send for FunctionState
impl Sync for FunctionState
impl Unpin for FunctionState
impl UnwindSafe for FunctionState
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