Struct wasmer_middlewares::metering::Metering[][src]

pub struct Metering<F: Fn(&Operator<'_>) -> u64 + Copy + Clone + Send + Sync> { /* fields omitted */ }

The module-level metering middleware.

Panic

An instance of Metering should not be shared among different modules, since it tracks module-specific information like the global index to store metering state. Attempts to use a Metering instance from multiple modules will result in a panic.

Implementations

impl<F: Fn(&Operator<'_>) -> u64 + Copy + Clone + Send + Sync> Metering<F>[src]

pub fn new(initial_limit: u64, cost_function: F) -> Self[src]

Creates a Metering middleware.

Trait Implementations

impl<F: Fn(&Operator<'_>) -> u64 + Copy + Clone + Send + Sync> Debug for Metering<F>[src]

impl<F: Fn(&Operator<'_>) -> u64 + Copy + Clone + Send + Sync + 'static> ModuleMiddleware for Metering<F>[src]

fn generate_function_middleware(
    &self,
    _: LocalFunctionIndex
) -> Box<dyn FunctionMiddleware>
[src]

Generates a FunctionMiddleware for a given function.

fn transform_module_info(&self, module_info: &mut ModuleInfo)[src]

Transforms a ModuleInfo struct in-place. This is called before application on functions begins.

Auto Trait Implementations

impl<F> RefUnwindSafe for Metering<F> where
    F: RefUnwindSafe
[src]

impl<F> Send for Metering<F>[src]

impl<F> Sync for Metering<F>[src]

impl<F> Unpin for Metering<F> where
    F: Unpin
[src]

impl<F> UnwindSafe for Metering<F> where
    F: UnwindSafe
[src]

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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

type Error = Infallible

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.