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§
Required Methods§
Sourcefn into_string(self) -> Option<Self::String>
fn into_string(self) -> Option<Self::String>
Tries to turn the value into it’s string representation
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".