pub trait DynExpr:
Debug
+ Send
+ Sync {
// Required method
fn render_dyn(&self, buf: &mut String);
}Expand description
A type-erased expression that can render itself into a SurrealQL buffer. Implemented by every expression node; the common currency of the builder.
Required Methods§
Sourcefn render_dyn(&self, buf: &mut String)
fn render_dyn(&self, buf: &mut String)
Append this expression’s SurrealQL to buf.
Trait Implementations§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".