pub struct Drop;Trait Implementations§
Source§impl<I: Apply<DropBucketErrors>> BucketErrorPolicy<I> for Drop
impl<I: Apply<DropBucketErrors>> BucketErrorPolicy<I> for Drop
Source§impl<I: Apply<DropBucketErrorsIn<G>>, G: ErrorGroup> BucketErrorPolicyIn<I, G> for Drop
impl<I: Apply<DropBucketErrorsIn<G>>, G: ErrorGroup> BucketErrorPolicyIn<I, G> for Drop
Source§impl<I: Apply<DropBucketErrorsOf<D>>, D: Diagnostic> BucketErrorPolicyOf<I, D> for Drop
impl<I: Apply<DropBucketErrorsOf<D>>, D: Diagnostic> BucketErrorPolicyOf<I, D> for Drop
Source§impl<I: Apply<DropBucketErrorsWithCause<E>>, E: Error + 'static> BucketErrorPolicyWithCause<I, E> for Drop
impl<I: Apply<DropBucketErrorsWithCause<E>>, E: Error + 'static> BucketErrorPolicyWithCause<I, E> for Drop
Source§impl<V: BareValueDomain> ElementKernel<Bare<V>> for Drop
impl<V: BareValueDomain> ElementKernel<Bare<V>> for Drop
Source§impl<I: IndexDomain, V: ValueDomain> ElementKernel<Indexed<I, V>> for Drop
impl<I: IndexDomain, V: ValueDomain> ElementKernel<Indexed<I, V>> for Drop
Source§impl<I: Apply<Self>> ErrorPolicy<I> for Drop
impl<I: Apply<Self>> ErrorPolicy<I> for Drop
Source§impl<I: Apply<DropErrorsIn<G>>, G: ErrorGroup> ErrorPolicyIn<I, G> for Drop
impl<I: Apply<DropErrorsIn<G>>, G: ErrorGroup> ErrorPolicyIn<I, G> for Drop
Source§impl<I: Apply<DropErrorsOf<D>>, D: Diagnostic> ErrorPolicyOf<I, D> for Drop
impl<I: Apply<DropErrorsOf<D>>, D: Diagnostic> ErrorPolicyOf<I, D> for Drop
Source§impl<I: Apply<DropErrorsWithCause<C>>, C: Error + 'static> ErrorPolicyWithCause<I, C> for Drop
impl<I: Apply<DropErrorsWithCause<C>>, C: Error + 'static> ErrorPolicyWithCause<I, C> for Drop
Source§impl Explain for Drop
impl Explain for Drop
fn describe<'__explain>( &'__explain self, formatter: &mut ExplainFormatter<'__explain, '_>, ) -> Result
Source§impl<I: Apply<DropKeyErrors>> KeyErrorPolicy<I> for Drop
impl<I: Apply<DropKeyErrors>> KeyErrorPolicy<I> for Drop
Source§impl<I: Apply<DropKeyErrorsIn<G>>, G: ErrorGroup> KeyErrorPolicyIn<I, G> for Drop
impl<I: Apply<DropKeyErrorsIn<G>>, G: ErrorGroup> KeyErrorPolicyIn<I, G> for Drop
Source§impl<I: Apply<DropKeyErrorsOf<D>>, D: Diagnostic> KeyErrorPolicyOf<I, D> for Drop
impl<I: Apply<DropKeyErrorsOf<D>>, D: Diagnostic> KeyErrorPolicyOf<I, D> for Drop
Source§impl<I: Apply<DropKeyErrorsWithCause<E>>, E: Error + 'static> KeyErrorPolicyWithCause<I, E> for Drop
impl<I: Apply<DropKeyErrorsWithCause<E>>, E: Error + 'static> KeyErrorPolicyWithCause<I, E> for Drop
Source§impl<A: Alignment, S: SourceDomain> MissingPolicy<A, S> for Drop
impl<A: Alignment, S: SourceDomain> MissingPolicy<A, S> for Drop
type Prepared<'a> = ()
type Retention = Dropping
fn prepare<'a>( &'a self, _graphrecord: &'a GraphRecord, _cache: &'a EvaluationCache<'a>, ) -> QueryResult<Self::Prepared<'a>>
fn resolve_absent<'a>(
_prepared: &Self::Prepared<'a>,
_address: &A::Address<'a>,
_label: &'static str,
) -> <Self::Retention as ElementEmission>::Step<QueryResult<<S::ValueDomain as ValueDomain>::Value<'a>>>where
S: 'a,
Source§impl OperationInputs for Drop
impl OperationInputs for Drop
type Inputs<'__inputs, __Primary: '__inputs> = (&'__inputs __Primary,)
fn inputs<'__inputs, __Primary: '__inputs>( &'__inputs self, primary: &'__inputs __Primary, ) -> Self::Inputs<'__inputs, __Primary>
Source§impl OptimizerHints for Drop
impl OptimizerHints for Drop
fn commutes_with_filter(&self) -> bool
fn allows_limit_pushdown(&self) -> bool
fn is_volatile(&self) -> bool
fn empty_rule(&self) -> EmptyRule
Source§impl PlanIdentity for Drop
impl PlanIdentity for Drop
fn identity_eq(&self, other: &Self) -> bool
fn identity_hash<__Hasher: Hasher>(&self, state: &mut __Hasher)
Source§impl PlanInputs for Drop
impl PlanInputs for Drop
Source§impl Prepare for Drop
impl Prepare for Drop
type Prepared<'a> = ()
fn prepare<'a>( &'a self, _graphrecord: &'a GraphRecord, _cache: &'a EvaluationCache<'a>, ) -> QueryResult<Self::Prepared<'a>>
Auto Trait Implementations§
impl Freeze for Drop
impl RefUnwindSafe for Drop
impl Send for Drop
impl Sync for Drop
impl Unpin for Drop
impl UnsafeUnpin for Drop
impl UnwindSafe for Drop
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