pub trait IJsonValue_Impl: Sized {
    // Required methods
    fn ValueType(&self) -> Result<JsonValueType>;
    fn Stringify(&self) -> Result<HSTRING>;
    fn GetString(&self) -> Result<HSTRING>;
    fn GetNumber(&self) -> Result<f64>;
    fn GetBoolean(&self) -> Result<bool>;
    fn GetArray(&self) -> Result<JsonArray>;
    fn GetObject(&self) -> Result<JsonObject>;
}

Required Methods§

fn ValueType(&self) -> Result<JsonValueType>

fn Stringify(&self) -> Result<HSTRING>

fn GetString(&self) -> Result<HSTRING>

fn GetNumber(&self) -> Result<f64>

fn GetBoolean(&self) -> Result<bool>

fn GetArray(&self) -> Result<JsonArray>

fn GetObject(&self) -> Result<JsonObject>

Object Safety§

This trait is not object safe.

Implementors§