pub trait ToEdgeValue {
    // Required method
    fn to_edge_value(&self) -> Value;
}

Required Methods§

source

fn to_edge_value(&self) -> Value

Transform a struct data into a edgedb_protocol::value::Value

Implementations on Foreign Types§

source§

impl ToEdgeValue for String

source§

impl ToEdgeValue for ()

source§

impl<T: ToEdgeValue> ToEdgeValue for Vec<T>

source§

impl ToEdgeValue for f32

source§

impl ToEdgeValue for f64

source§

impl ToEdgeValue for i16

source§

impl ToEdgeValue for i32

source§

impl ToEdgeValue for i64

source§

impl ToEdgeValue for i8

source§

impl ToEdgeValue for Uuid

source§

impl ToEdgeValue for Value

source§

impl ToEdgeValue for bool

Implementors§