pub trait SurrealQL:
Debug
+ Clone
+ Send
+ Sync
+ 'static {
// Required methods
fn surreal_type() -> &'static str;
fn render_literal(value: &Self, buf: &mut String);
}Required Methods§
fn surreal_type() -> &'static str
fn render_literal(value: &Self, buf: &mut String)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".