pub trait OvsdbSerializableExt: OvsdbSerializable {
// Provided methods
fn to_ovsdb_json(&self) -> Option<Value> { ... }
fn from_ovsdb_json(json: &Value) -> Option<Self> { ... }
}Expand description
Extension trait for OvsdbSerializable to handle JSON conversion
Provided Methods§
fn to_ovsdb_json(&self) -> Option<Value>
fn from_ovsdb_json(json: &Value) -> Option<Self>
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.