Serializable

Trait Serializable 

Source
pub trait Serializable: Serialize + for<'de> Deserialize<'de> {
    // Provided methods
    fn to_json(&self) -> Result<String> { ... }
    fn to_json_pretty(&self) -> Result<String> { ... }
    fn from_json(json: &str) -> Result<Self>
       where Self: Sized { ... }
}
Expand description

Serializable trait for objects that can be serialized

Provided Methods§

Source

fn to_json(&self) -> Result<String>

Serialize to JSON string

Source

fn to_json_pretty(&self) -> Result<String>

Serialize to JSON pretty string

Source

fn from_json(json: &str) -> Result<Self>
where Self: Sized,

Deserialize from JSON string

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.

Implementors§

Source§

impl<T> Serializable for T
where T: Serialize + for<'de> Deserialize<'de>,

Extend Serializable for serializable types