pub trait TryIntoValue {
type Error: Error + 'static + Send + Sync;
// Required method
fn try_into_value(self) -> Result<Value, Self::Error>;
}pub trait TryIntoValue {
type Error: Error + 'static + Send + Sync;
// Required method
fn try_into_value(self) -> Result<Value, Self::Error>;
}