pub trait Value: for<'de> Deserialize<'de> + Clone + Debug + Display
where Self: TryInto<AssetsOptions>,
{ // Required methods fn as_bool(&self) -> Option<bool>; fn as_str(&self) -> Option<&str>; }

Required Methods§

source

fn as_bool(&self) -> Option<bool>

source

fn as_str(&self) -> Option<&str>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Value for Value

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_str(&self) -> Option<&str>

source§

impl Value for Value

source§

fn as_bool(&self) -> Option<bool>

source§

fn as_str(&self) -> Option<&str>

Implementors§