pub trait ValueNegate: ValueDomain {
// Required method
fn negate<'a>(
label: &'static str,
value: Self::Value<'a>,
) -> QueryResult<Self::Value<'a>>;
}Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".