Struct wasmedge_sys::Validator

source ·
pub struct Validator { /* private fields */ }
Expand description

Struct of WasmEdge Validator.

Implementations§

source§

impl Validator

source

pub fn create(config: Option<&Config>) -> WasmEdgeResult<Self>

Creates a new Validator to be associated with the given global configuration.

§Arguments
  • config - The global environment configuration.
§Error

If fail to create a Validator, then an error is returned.

source

pub fn validate(&self, module: &Module) -> WasmEdgeResult<()>

Validates a given WasmEdge Module.

Modules are valid when all components they contain are valid. Furthermore, most definitions are themselves classified with a suitable type.

§Arguments
  • module - The Module to be validated.
§Error

If the validation fails, then an error is returned.

source

pub fn as_ptr(&self) -> *const WasmEdge_ValidatorContext

Available on crate feature ffi only.

Provides a raw pointer to the inner Validator context.

Trait Implementations§

source§

impl Debug for Validator

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Drop for Validator

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.