pub struct Argument<A, V, R>{ /* private fields */ }Trait Implementations§
Source§impl<A, V, R> ArgumentSource<A, V> for Argument<A, V, R>
impl<A, V, R> ArgumentSource<A, V> for Argument<A, V, R>
type Retention = R
fn lookup<'a, 'prepared>(
prepared: &'prepared Self::Prepared<'a>,
address: &A::Address<'a>,
) -> Lookup<'prepared, QueryResult<V::Value<'a>>>where
Self: 'a,
fn resolve<'a>(
prepared: &Self::Prepared<'a>,
address: &A::Address<'a>,
label: &'static str,
) -> R::Step<QueryResult<V::Value<'a>>>where
Self: 'a,
Source§impl<A, V, R> Explain for Argument<A, V, R>
impl<A, V, R> Explain for Argument<A, V, R>
fn describe<'a>(&'a self, formatter: &mut ExplainFormatter<'a, '_>) -> Result
Source§impl<A, V, R> PlanIdentity for Argument<A, V, R>
impl<A, V, R> PlanIdentity for Argument<A, V, R>
fn identity_eq(&self, other: &Self) -> bool
fn identity_hash<H: Hasher>(&self, state: &mut H)
Source§impl<A, V, R> PlanInputs for Argument<A, V, R>
impl<A, V, R> PlanInputs for Argument<A, V, R>
Source§impl<A, V, R> Prepare for Argument<A, V, R>
impl<A, V, R> Prepare for Argument<A, V, R>
type Prepared<'a> = PreparedArgument<'a, A, V, R> where Self: 'a
fn prepare<'a>( &'a self, graphrecord: &'a GraphRecord, cache: &'a EvaluationCache<'a>, ) -> QueryResult<Self::Prepared<'a>>
Source§impl<A, V, R> SourceDomain for Argument<A, V, R>
impl<A, V, R> SourceDomain for Argument<A, V, R>
type ValueDomain = V
Auto Trait Implementations§
impl<A, V, R> !RefUnwindSafe for Argument<A, V, R>
impl<A, V, R> !UnwindSafe for Argument<A, V, R>
impl<A, V, R> Freeze for Argument<A, V, R>
impl<A, V, R> Send for Argument<A, V, R>
impl<A, V, R> Sync for Argument<A, V, R>
impl<A, V, R> Unpin for Argument<A, V, R>
impl<A, V, R> UnsafeUnpin for Argument<A, V, R>
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<A, V, S> IntoArgument<A, V> for S
impl<A, V, S> IntoArgument<A, V> for S
fn into_argument(self) -> Argument<A, V, <S as ArgumentSource<A, V>>::Retention>
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