pub trait JsonValueCheck: JsonValueWrap where
    Self: Sized
{ fn is_null(&self) -> bool; fn is_empty(&self) -> bool; fn is_boolean(&self) -> bool { ... } fn is_true(&self) -> bool { ... } fn is_false(&self) -> bool { ... } fn is_string(&self) -> bool { ... } fn is_array(&self) -> bool { ... } }
Expand description

Check the type of json value

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors