pub fn into_value(v: impl Serialize) -> Result<Value, Error>
Expand description

Convert T: Serialize into Value.

Examples

use serde_bridge::{into_value, Value};
let v = into_value(true)?;