pub enum Dependencies<I, T, S1I, S1T, S2I, S2T, S3I, S3T> {
From1(BoxedAnyIterableVec<S1I, S1T>, ComputeFrom1<I, T, S1I, S1T>),
From2((BoxedAnyIterableVec<S1I, S1T>, BoxedAnyIterableVec<S2I, S2T>), ComputeFrom2<I, T, S1I, S1T, S2I, S2T>),
From3((BoxedAnyIterableVec<S1I, S1T>, BoxedAnyIterableVec<S2I, S2T>, BoxedAnyIterableVec<S3I, S3T>), ComputeFrom3<I, T, S1I, S1T, S2I, S2T, S3I, S3T>),
}Variants§
From1(BoxedAnyIterableVec<S1I, S1T>, ComputeFrom1<I, T, S1I, S1T>)
From2((BoxedAnyIterableVec<S1I, S1T>, BoxedAnyIterableVec<S2I, S2T>), ComputeFrom2<I, T, S1I, S1T, S2I, S2T>)
From3((BoxedAnyIterableVec<S1I, S1T>, BoxedAnyIterableVec<S2I, S2T>, BoxedAnyIterableVec<S3I, S3T>), ComputeFrom3<I, T, S1I, S1T, S2I, S2T, S3I, S3T>)
Trait Implementations§
Source§impl<I: Clone, T: Clone, S1I: Clone, S1T: Clone, S2I: Clone, S2T: Clone, S3I: Clone, S3T: Clone> Clone for Dependencies<I, T, S1I, S1T, S2I, S2T, S3I, S3T>
impl<I: Clone, T: Clone, S1I: Clone, S1T: Clone, S2I: Clone, S2T: Clone, S3I: Clone, S3T: Clone> Clone for Dependencies<I, T, S1I, S1T, S2I, S2T, S3I, S3T>
Source§fn clone(&self) -> Dependencies<I, T, S1I, S1T, S2I, S2T, S3I, S3T>
fn clone(&self) -> Dependencies<I, T, S1I, S1T, S2I, S2T, S3I, S3T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<I, T, S1I, S1T, S2I, S2T, S3I, S3T> Freeze for Dependencies<I, T, S1I, S1T, S2I, S2T, S3I, S3T>
impl<I, T, S1I, S1T, S2I, S2T, S3I, S3T> !RefUnwindSafe for Dependencies<I, T, S1I, S1T, S2I, S2T, S3I, S3T>
impl<I, T, S1I, S1T, S2I, S2T, S3I, S3T> Send for Dependencies<I, T, S1I, S1T, S2I, S2T, S3I, S3T>
impl<I, T, S1I, S1T, S2I, S2T, S3I, S3T> Sync for Dependencies<I, T, S1I, S1T, S2I, S2T, S3I, S3T>
impl<I, T, S1I, S1T, S2I, S2T, S3I, S3T> Unpin for Dependencies<I, T, S1I, S1T, S2I, S2T, S3I, S3T>
impl<I, T, S1I, S1T, S2I, S2T, S3I, S3T> !UnwindSafe for Dependencies<I, T, S1I, S1T, S2I, S2T, S3I, S3T>
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<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