pub enum IntentError {
PlanShape(PolicyPlanError),
ByIdsWithPredicate,
OnlyWithPredicate,
KeyAccessConflict,
InvalidPagingShape(PagingIntentError),
GroupedRequiresDirectExecute,
HavingRequiresGroupBy,
HavingReferencesUnknownAggregate,
}Expand description
IntentError
Variants§
PlanShape(PolicyPlanError)
ByIdsWithPredicate
OnlyWithPredicate
KeyAccessConflict
InvalidPagingShape(PagingIntentError)
GroupedRequiresDirectExecute
HavingRequiresGroupBy
HavingReferencesUnknownAggregate
Trait Implementations§
Source§impl Clone for IntentError
impl Clone for IntentError
Source§fn clone(&self) -> IntentError
fn clone(&self) -> IntentError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for IntentError
Source§impl Debug for IntentError
impl Debug for IntentError
Source§impl From<IntentError> for QueryError
impl From<IntentError> for QueryError
Source§fn from(err: IntentError) -> Self
fn from(err: IntentError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IntentError
impl RefUnwindSafe for IntentError
impl Send for IntentError
impl Sync for IntentError
impl Unpin for IntentError
impl UnsafeUnpin for IntentError
impl UnwindSafe for IntentError
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