pub trait ToEdgeValue {
// Required method
fn to_edge_value(&self) -> Value;
}Required Methods§
Sourcefn to_edge_value(&self) -> Value
fn to_edge_value(&self) -> Value
Transform a struct data into a edgedb_protocol::value::Value
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".