pub trait SetSource<V: ValueDomain>:
Prepare
+ Explain
+ PlanIdentity
+ PlanInputs
+ Estimated {
// Required method
fn set<'a>(
prepared: Self::Prepared<'a>,
) -> QueryResult<GrHashSet<V::Value<'a>>>
where Self: 'a,
V::Value<'a>: Eq + Hash;
}Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".