Struct CompoundIndexOfTwo
pub struct CompoundIndexOfTwo<A, B> { /* private fields */ }Implementations§
§impl<A, B> CompoundIndexOfTwo<A, B>
impl<A, B> CompoundIndexOfTwo<A, B>
pub fn new(a: A, b: B) -> Self
Trait Implementations§
§impl<A: ComposableIndex, B: ComposableIndex> ComposableIndex for CompoundIndexOfTwo<A, B>
impl<A: ComposableIndex, B: ComposableIndex> ComposableIndex for CompoundIndexOfTwo<A, B>
fn compose_index( &self, key: &IndexKey, inputs: ComposablePlaintext, accumulator: Accumulator, ) -> Result<Accumulator, EncryptionError>
fn compose_query( &self, key: &IndexKey, inputs: ComposablePlaintext, accumulator: Accumulator, ) -> Result<Accumulator, EncryptionError>
Auto Trait Implementations§
impl<A, B> Freeze for CompoundIndexOfTwo<A, B>
impl<A, B> RefUnwindSafe for CompoundIndexOfTwo<A, B>where
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for CompoundIndexOfTwo<A, B>
impl<A, B> Sync for CompoundIndexOfTwo<A, B>
impl<A, B> Unpin for CompoundIndexOfTwo<A, B>
impl<A, B> UnsafeUnpin for CompoundIndexOfTwo<A, B>where
A: UnsafeUnpin,
B: UnsafeUnpin,
impl<A, B> UnwindSafe for CompoundIndexOfTwo<A, B>where
A: UnwindSafe,
B: UnwindSafe,
Blanket Implementations§
impl<T> AuthStrategyBounds for T
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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