pub trait Conflict<T: ToEdgeQuery + Clone> {
// Required method
fn else_query(&self) -> Option<T>;
}Expand description
Conflict trait represents an ‘unless conflict’ statement in an edgeDB query
Required Methods§
fn else_query(&self) -> Option<T>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".