simd_json::value::prelude

Trait ValueTryIntoObject

source
pub trait ValueTryIntoObject {
    type Object;

    // Required method
    fn try_into_object(self) -> Result<Self::Object, TryTypeError>;
}
Expand description

A trait that specifies how to turn the Value into it’s sub types with error handling

Required Associated Types§

source

type Object

The type for Objects

Required Methods§

source

fn try_into_object(self) -> Result<Self::Object, TryTypeError>

Tries to turn the value into it’s object representation

§Errors

if the requested type doesn’t match the actual type

Implementors§