pub enum UnsupportedQueryFeature {
MapPredicate {
field: String,
},
}Expand description
UnsupportedQueryFeature
Policy-level query features that are intentionally not supported.
Map predicates are disallowed by design: map storage may exist, but query semantics over map structure are intentionally fenced for deterministic and stable query behavior.
Variants§
Trait Implementations§
Source§impl Clone for UnsupportedQueryFeature
impl Clone for UnsupportedQueryFeature
Source§fn clone(&self) -> UnsupportedQueryFeature
fn clone(&self) -> UnsupportedQueryFeature
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UnsupportedQueryFeature
impl Debug for UnsupportedQueryFeature
Source§impl Display for UnsupportedQueryFeature
impl Display for UnsupportedQueryFeature
Source§impl Error for UnsupportedQueryFeature
impl Error for UnsupportedQueryFeature
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<UnsupportedQueryFeature> for ValidateError
impl From<UnsupportedQueryFeature> for ValidateError
Source§fn from(source: UnsupportedQueryFeature) -> Self
fn from(source: UnsupportedQueryFeature) -> Self
Converts to this type from the input type.
Source§impl PartialEq for UnsupportedQueryFeature
impl PartialEq for UnsupportedQueryFeature
impl Eq for UnsupportedQueryFeature
impl StructuralPartialEq for UnsupportedQueryFeature
Auto Trait Implementations§
impl Freeze for UnsupportedQueryFeature
impl RefUnwindSafe for UnsupportedQueryFeature
impl Send for UnsupportedQueryFeature
impl Sync for UnsupportedQueryFeature
impl Unpin for UnsupportedQueryFeature
impl UnsafeUnpin for UnsupportedQueryFeature
impl UnwindSafe for UnsupportedQueryFeature
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more