Join

Struct Join 

Source
pub struct Join<K, V1, V2, C1: Op<D = (K, V1)>, C2: Op<D = (K, V2)>> { /* private fields */ }

Trait Implementations§

Source§

impl<K: Eq + Hash + Clone, V1: Eq + Hash + Clone, V2: Eq + Hash + Clone, C1: Op<D = (K, V1)>, C2: Op<D = (K, V2)>> Op_ for Join<K, V1, V2, C1, C2>

Source§

type T = ((K, V1, V2), isize)

Source§

fn foreach<'a>(&'a mut self, continuation: impl FnMut(Self::T) + 'a)

Source§

fn get_type_name() -> &'static str

Auto Trait Implementations§

§

impl<K, V1, V2, C1, C2> Freeze for Join<K, V1, V2, C1, C2>
where C1: Freeze, C2: Freeze,

§

impl<K, V1, V2, C1, C2> RefUnwindSafe for Join<K, V1, V2, C1, C2>

§

impl<K, V1, V2, C1, C2> Send for Join<K, V1, V2, C1, C2>
where C1: Send, C2: Send, K: Send, V1: Send, V2: Send,

§

impl<K, V1, V2, C1, C2> Sync for Join<K, V1, V2, C1, C2>
where C1: Sync, C2: Sync, K: Sync, V1: Sync, V2: Sync,

§

impl<K, V1, V2, C1, C2> Unpin for Join<K, V1, V2, C1, C2>
where C1: Unpin, C2: Unpin, K: Unpin, V1: Unpin, V2: Unpin,

§

impl<K, V1, V2, C1, C2> UnwindSafe for Join<K, V1, V2, C1, C2>
where C1: UnwindSafe, K: UnwindSafe, C2: UnwindSafe, V1: UnwindSafe, V2: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Is for T

Source§

impl<C, D> Op for C
where C: Op_<T = (D, isize)>,

Source§

type D = D

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.