Trait mcai_worker_sdk::parameter::ParameterValue[][src]

pub trait ParameterValue {
    fn get_type_as_string() -> String;

    fn parse_value(content: Value, store: &Option<String>) -> Result<Self>
    where
        Self: Sized + DeserializeOwned
, { ... }
fn from_store(key: &str, store_code: &str) -> Result<Value> { ... }
fn from_value(content: Value) -> Result<Self>
    where
        Self: Sized + DeserializeOwned
, { ... } }

Required methods

Provided methods

Implementations on Foreign Types

Implementors