simd_json::base

Trait ValueIntoString

source
pub trait ValueIntoString {
    type String;

    // Required method
    fn into_string(self) -> Option<Self::String>;
}
Expand description

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

Required Associated Types§

source

type String

The type for Strings

Required Methods§

source

fn into_string(self) -> Option<Self::String>

Tries to turn the value into it’s string representation

Implementations on Foreign Types§

source§

impl<V> ValueIntoString for Option<V>
where V: ValueIntoString,

source§

impl<V, E> ValueIntoString for Result<V, E>
where V: ValueIntoString,

Implementors§

source§

impl ValueIntoString for simd_json::owned::Value

source§

impl<'borrow, 'tape, 'value> ValueIntoString for simd_json::lazy::Value<'borrow, 'tape, 'value>

source§

type String = Cow<'value, str>

source§

impl<'tape, 'input> ValueIntoString for simd_json::tape::Value<'tape, 'input>

source§

type String = &'input str

source§

impl<'value> ValueIntoString for simd_json::borrowed::Value<'value>

source§

type String = Cow<'value, str>