pub struct DropErrorsWithCause<C: Error + 'static> { /* private fields */ }Trait Implementations§
Source§impl<C: Error + 'static> Clone for DropErrorsWithCause<C>
impl<C: Error + 'static> Clone for DropErrorsWithCause<C>
Source§impl<V: BareValueDomain, C: Error + 'static> ElementKernel<Bare<V>> for DropErrorsWithCause<C>
impl<V: BareValueDomain, C: Error + 'static> ElementKernel<Bare<V>> for DropErrorsWithCause<C>
Source§impl<I: IndexDomain, V: ValueDomain, C: Error + 'static> ElementKernel<Indexed<I, V>> for DropErrorsWithCause<C>
impl<I: IndexDomain, V: ValueDomain, C: Error + 'static> ElementKernel<Indexed<I, V>> for DropErrorsWithCause<C>
Source§impl<C: Error + 'static> Explain for DropErrorsWithCause<C>
impl<C: Error + 'static> Explain for DropErrorsWithCause<C>
fn describe<'a>(&'a self, formatter: &mut ExplainFormatter<'a, '_>) -> Result
Source§impl<C: Error + 'static> Labeled for DropErrorsWithCause<C>
impl<C: Error + 'static> Labeled for DropErrorsWithCause<C>
Source§impl<C: Error + 'static> Operation for DropErrorsWithCause<C>
impl<C: Error + 'static> Operation for DropErrorsWithCause<C>
Source§impl<C: Error + 'static> OperationInputs for DropErrorsWithCause<C>
impl<C: Error + 'static> OperationInputs for DropErrorsWithCause<C>
type Inputs<'__inputs, __Primary: '__inputs> = (&'__inputs __Primary,)
fn inputs<'__inputs, __Primary: '__inputs>( &'__inputs self, primary: &'__inputs __Primary, ) -> Self::Inputs<'__inputs, __Primary>
Source§impl<C: Error + 'static> OptimizerHints for DropErrorsWithCause<C>
impl<C: Error + 'static> OptimizerHints for DropErrorsWithCause<C>
fn commutes_with_filter(&self) -> bool
fn allows_limit_pushdown(&self) -> bool
fn is_volatile(&self) -> bool
fn empty_rule(&self) -> EmptyRule
Source§impl<C: Error + 'static> PlanIdentity for DropErrorsWithCause<C>
impl<C: Error + 'static> PlanIdentity for DropErrorsWithCause<C>
fn identity_eq(&self, other: &Self) -> bool
fn identity_hash<__Hasher: Hasher>(&self, state: &mut __Hasher)
Source§impl<C: Error + 'static> PlanInputs for DropErrorsWithCause<C>
impl<C: Error + 'static> PlanInputs for DropErrorsWithCause<C>
Source§impl<C: Error + 'static> Prepare for DropErrorsWithCause<C>
impl<C: Error + 'static> Prepare for DropErrorsWithCause<C>
type Prepared<'a> = ()
fn prepare<'a>( &'a self, _graphrecord: &'a GraphRecord, _cache: &'a EvaluationCache<'a>, ) -> QueryResult<Self::Prepared<'a>>
Auto Trait Implementations§
impl<C> Freeze for DropErrorsWithCause<C>
impl<C> RefUnwindSafe for DropErrorsWithCause<C>
impl<C> Send for DropErrorsWithCause<C>
impl<C> Sync for DropErrorsWithCause<C>
impl<C> Unpin for DropErrorsWithCause<C>
impl<C> UnsafeUnpin for DropErrorsWithCause<C>
impl<C> UnwindSafe for DropErrorsWithCause<C>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<S, T> ExpandTo<T> for S
impl<S, T> ExpandTo<T> for S
type ReturnOperand = <T as Apply<ExpandToOperation<S>>>::Output
fn expand_to(&self, template: &T) -> <S as ExpandTo<T>>::ReturnOperand
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more