pub trait ToJson: Serialize + Sized {
// Provided methods
fn to_json(&self) -> Result<String> { ... }
fn to_json_vec(&self) -> Result<Vec<u8>> { ... }
fn to_json_value(&self) -> Result<Value> { ... }
fn to_json_pretty(&self) -> Result<String> { ... }
}
Expand description
A convenience-trait for types that can be serialized as JSON.
Provided Methods§
Sourcefn to_json_vec(&self) -> Result<Vec<u8>>
fn to_json_vec(&self) -> Result<Vec<u8>>
Serialize self
as a JSON byte vector.
Sourcefn to_json_value(&self) -> Result<Value>
fn to_json_value(&self) -> Result<Value>
Serialize self
as a serde_json::Value
.
Sourcefn to_json_pretty(&self) -> Result<String>
fn to_json_pretty(&self) -> Result<String>
Serialize self
as a pretty-printed string of JSON.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.