pub struct CastOperation<T: CastTarget> { /* private fields */ }Trait Implementations§
Source§impl<T: Clone + CastTarget> Clone for CastOperation<T>
impl<T: Clone + CastTarget> Clone for CastOperation<T>
Source§fn clone(&self) -> CastOperation<T>
fn clone(&self) -> CastOperation<T>
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 moreSource§impl<V, T> ElementKernel<Bare<V>> for CastOperation<T>
impl<V, T> ElementKernel<Bare<V>> for CastOperation<T>
Source§impl<I, V, T> ElementKernel<Indexed<I, V>> for CastOperation<T>
impl<I, V, T> ElementKernel<Indexed<I, V>> for CastOperation<T>
Source§impl<T: CastTarget> Explain for CastOperation<T>
impl<T: CastTarget> Explain for CastOperation<T>
fn describe<'__explain>( &'__explain self, formatter: &mut ExplainFormatter<'__explain, '_>, ) -> Result
Source§impl<T: CastTarget> Labeled for CastOperation<T>
impl<T: CastTarget> Labeled for CastOperation<T>
Source§impl<T: CastTarget> Operation for CastOperation<T>
impl<T: CastTarget> Operation for CastOperation<T>
Source§impl<T: CastTarget> OperationInputs for CastOperation<T>
impl<T: CastTarget> OperationInputs for CastOperation<T>
type Inputs<'__inputs, __Primary: '__inputs> = (&'__inputs __Primary,)
fn inputs<'__inputs, __Primary: '__inputs>( &'__inputs self, primary: &'__inputs __Primary, ) -> Self::Inputs<'__inputs, __Primary>
Source§impl<T: CastTarget> OptimizerHints for CastOperation<T>
impl<T: CastTarget> OptimizerHints for CastOperation<T>
fn commutes_with_filter(&self) -> bool
fn allows_limit_pushdown(&self) -> bool
fn is_volatile(&self) -> bool
fn empty_rule(&self) -> EmptyRule
Source§impl<T: CastTarget> PlanIdentity for CastOperation<T>
impl<T: CastTarget> PlanIdentity for CastOperation<T>
fn identity_eq(&self, other: &Self) -> bool
fn identity_hash<__Hasher: Hasher>(&self, state: &mut __Hasher)
Source§impl<T: CastTarget> PlanInputs for CastOperation<T>
impl<T: CastTarget> PlanInputs for CastOperation<T>
Source§impl<T: CastTarget> Prepare for CastOperation<T>
impl<T: CastTarget> Prepare for CastOperation<T>
type Prepared<'a> = &'a T where Self: 'a
fn prepare<'a>( &'a self, _graphrecord: &'a GraphRecord, _cache: &'a EvaluationCache<'a>, ) -> QueryResult<Self::Prepared<'a>>
Auto Trait Implementations§
impl<T> Freeze for CastOperation<T>where
T: Freeze,
impl<T> RefUnwindSafe for CastOperation<T>where
T: RefUnwindSafe,
impl<T> Send for CastOperation<T>
impl<T> Sync for CastOperation<T>
impl<T> Unpin for CastOperation<T>where
T: Unpin,
impl<T> UnsafeUnpin for CastOperation<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for CastOperation<T>where
T: UnwindSafe,
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