Trait WasmtimeOptionValue

Source
pub trait WasmtimeOptionValue: Sized {
    const VAL_HELP: &'static str;

    // Required methods
    fn parse(val: Option<&str>) -> Result<Self>;
    fn display(&self, f: &mut Formatter<'_>) -> Result;
}
Expand description

A helper trait for all types of options that can be parsed. This is what actually parses the =val in key=val

Required Associated Constants§

Source

const VAL_HELP: &'static str

Help text for the value to be specified.

Required Methods§

Source

fn parse(val: Option<&str>) -> Result<Self>

Parses the provided value, if given, returning an error on failure.

Source

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

Write the value to f that would parse to self.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl WasmtimeOptionValue for bool

Source§

const VAL_HELP: &'static str = "[=y|n]"

Source§

fn parse(val: Option<&str>) -> Result<Self>

Source§

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

Source§

impl WasmtimeOptionValue for u32

Source§

const VAL_HELP: &'static str = "=N"

Source§

fn parse(val: Option<&str>) -> Result<Self>

Source§

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

Source§

impl WasmtimeOptionValue for u64

Source§

const VAL_HELP: &'static str = "=N"

Source§

fn parse(val: Option<&str>) -> Result<Self>

Source§

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

Source§

impl WasmtimeOptionValue for usize

Source§

const VAL_HELP: &'static str = "=N"

Source§

fn parse(val: Option<&str>) -> Result<Self>

Source§

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

Source§

impl WasmtimeOptionValue for String

Source§

const VAL_HELP: &'static str = "=val"

Source§

fn parse(val: Option<&str>) -> Result<Self>

Source§

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

Source§

impl WasmtimeOptionValue for Duration

Source§

const VAL_HELP: &'static str = "=N|Ns|Nms|.."

Source§

fn parse(val: Option<&str>) -> Result<Duration>

Source§

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

Source§

impl WasmtimeOptionValue for Collector

Source§

const VAL_HELP: &'static str = "=drc|null"

Source§

fn parse(val: Option<&str>) -> Result<Self>

Source§

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

Source§

impl WasmtimeOptionValue for MpkEnabled

Source§

const VAL_HELP: &'static str = "[=y|n|auto]"

Source§

fn parse(val: Option<&str>) -> Result<Self>

Source§

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

Source§

impl WasmtimeOptionValue for OptLevel

Source§

const VAL_HELP: &'static str = "=0|1|2|s"

Source§

fn parse(val: Option<&str>) -> Result<Self>

Source§

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

Source§

impl WasmtimeOptionValue for RegallocAlgorithm

Source§

const VAL_HELP: &'static str = "=backtracking|single-pass"

Source§

fn parse(val: Option<&str>) -> Result<Self>

Source§

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

Source§

impl WasmtimeOptionValue for Strategy

Source§

const VAL_HELP: &'static str = "=winch|cranelift"

Source§

fn parse(val: Option<&str>) -> Result<Self>

Source§

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

Implementors§

Source§

impl WasmtimeOptionValue for KeyValuePair

Source§

const VAL_HELP: &'static str = "=<name>=<val>"

Source§

impl WasmtimeOptionValue for WasiNnGraph

Source§

const VAL_HELP: &'static str = "=<format>::<dir>"