to_value

Function to_value 

Source
pub fn to_value<T>(value: &T) -> Result<Value, Error>
where T: ?Sized + Serialize,
Expand description

Serializes an instance of T into a Value.

§Errors

Serialization can fail if T’s implementation of Serialize decides to fail, if T contains unsupported types for serialization, or if T contains a map with non-string keys.