pub struct Added;
Expand description
Marker for a fetch which has been transformed to filter inserted items.
Trait Implementations§
Source§impl<A: TransformFetch<Added>> TransformFetch<Added> for (A,)
impl<A: TransformFetch<Added>> TransformFetch<Added> for (A,)
Source§impl<A: TransformFetch<Added>, B: TransformFetch<Added>> TransformFetch<Added> for (A, B)
impl<A: TransformFetch<Added>, B: TransformFetch<Added>> TransformFetch<Added> for (A, B)
Source§impl<A: TransformFetch<Added>, B: TransformFetch<Added>, C: TransformFetch<Added>> TransformFetch<Added> for (A, B, C)
impl<A: TransformFetch<Added>, B: TransformFetch<Added>, C: TransformFetch<Added>> TransformFetch<Added> for (A, B, C)
Source§type Output = Union<(<A as TransformFetch<Added>>::Output, <B as TransformFetch<Added>>::Output, <C as TransformFetch<Added>>::Output)>
type Output = Union<(<A as TransformFetch<Added>>::Output, <B as TransformFetch<Added>>::Output, <C as TransformFetch<Added>>::Output)>
The transformed type. Read more
Source§fn transform_fetch(self, method: Added) -> Self::Output
fn transform_fetch(self, method: Added) -> Self::Output
Transform the fetch using the provided method
Source§impl<A: TransformFetch<Added>, B: TransformFetch<Added>, C: TransformFetch<Added>, D: TransformFetch<Added>> TransformFetch<Added> for (A, B, C, D)
impl<A: TransformFetch<Added>, B: TransformFetch<Added>, C: TransformFetch<Added>, D: TransformFetch<Added>> TransformFetch<Added> for (A, B, C, D)
Source§type Output = Union<(<A as TransformFetch<Added>>::Output, <B as TransformFetch<Added>>::Output, <C as TransformFetch<Added>>::Output, <D as TransformFetch<Added>>::Output)>
type Output = Union<(<A as TransformFetch<Added>>::Output, <B as TransformFetch<Added>>::Output, <C as TransformFetch<Added>>::Output, <D as TransformFetch<Added>>::Output)>
The transformed type. Read more
Source§fn transform_fetch(self, method: Added) -> Self::Output
fn transform_fetch(self, method: Added) -> Self::Output
Transform the fetch using the provided method
Source§impl<A: TransformFetch<Added>, B: TransformFetch<Added>, C: TransformFetch<Added>, D: TransformFetch<Added>, E: TransformFetch<Added>> TransformFetch<Added> for (A, B, C, D, E)
impl<A: TransformFetch<Added>, B: TransformFetch<Added>, C: TransformFetch<Added>, D: TransformFetch<Added>, E: TransformFetch<Added>> TransformFetch<Added> for (A, B, C, D, E)
Source§type Output = Union<(<A as TransformFetch<Added>>::Output, <B as TransformFetch<Added>>::Output, <C as TransformFetch<Added>>::Output, <D as TransformFetch<Added>>::Output, <E as TransformFetch<Added>>::Output)>
type Output = Union<(<A as TransformFetch<Added>>::Output, <B as TransformFetch<Added>>::Output, <C as TransformFetch<Added>>::Output, <D as TransformFetch<Added>>::Output, <E as TransformFetch<Added>>::Output)>
The transformed type. Read more
Source§fn transform_fetch(self, method: Added) -> Self::Output
fn transform_fetch(self, method: Added) -> Self::Output
Transform the fetch using the provided method
Source§impl<A: TransformFetch<Added>, B: TransformFetch<Added>, C: TransformFetch<Added>, D: TransformFetch<Added>, E: TransformFetch<Added>, F: TransformFetch<Added>> TransformFetch<Added> for (A, B, C, D, E, F)
impl<A: TransformFetch<Added>, B: TransformFetch<Added>, C: TransformFetch<Added>, D: TransformFetch<Added>, E: TransformFetch<Added>, F: TransformFetch<Added>> TransformFetch<Added> for (A, B, C, D, E, F)
Source§type Output = Union<(<A as TransformFetch<Added>>::Output, <B as TransformFetch<Added>>::Output, <C as TransformFetch<Added>>::Output, <D as TransformFetch<Added>>::Output, <E as TransformFetch<Added>>::Output, <F as TransformFetch<Added>>::Output)>
type Output = Union<(<A as TransformFetch<Added>>::Output, <B as TransformFetch<Added>>::Output, <C as TransformFetch<Added>>::Output, <D as TransformFetch<Added>>::Output, <E as TransformFetch<Added>>::Output, <F as TransformFetch<Added>>::Output)>
The transformed type. Read more
Source§fn transform_fetch(self, method: Added) -> Self::Output
fn transform_fetch(self, method: Added) -> Self::Output
Transform the fetch using the provided method
Source§impl<A: TransformFetch<Added>, B: TransformFetch<Added>, C: TransformFetch<Added>, D: TransformFetch<Added>, E: TransformFetch<Added>, F: TransformFetch<Added>, H: TransformFetch<Added>> TransformFetch<Added> for (A, B, C, D, E, F, H)
impl<A: TransformFetch<Added>, B: TransformFetch<Added>, C: TransformFetch<Added>, D: TransformFetch<Added>, E: TransformFetch<Added>, F: TransformFetch<Added>, H: TransformFetch<Added>> TransformFetch<Added> for (A, B, C, D, E, F, H)
Source§type Output = Union<(<A as TransformFetch<Added>>::Output, <B as TransformFetch<Added>>::Output, <C as TransformFetch<Added>>::Output, <D as TransformFetch<Added>>::Output, <E as TransformFetch<Added>>::Output, <F as TransformFetch<Added>>::Output, <H as TransformFetch<Added>>::Output)>
type Output = Union<(<A as TransformFetch<Added>>::Output, <B as TransformFetch<Added>>::Output, <C as TransformFetch<Added>>::Output, <D as TransformFetch<Added>>::Output, <E as TransformFetch<Added>>::Output, <F as TransformFetch<Added>>::Output, <H as TransformFetch<Added>>::Output)>
The transformed type. Read more
Source§fn transform_fetch(self, method: Added) -> Self::Output
fn transform_fetch(self, method: Added) -> Self::Output
Transform the fetch using the provided method
Source§impl<T: ComponentValue> TransformFetch<Added> for Component<T>
impl<T: ComponentValue> TransformFetch<Added> for Component<T>
Source§type Output = ChangeFilter<T>
type Output = ChangeFilter<T>
The transformed type. Read more
Source§fn transform_fetch(self, _: Added) -> Self::Output
fn transform_fetch(self, _: Added) -> Self::Output
Transform the fetch using the provided method
Source§impl TransformFetch<Added> for EntityIds
impl TransformFetch<Added> for EntityIds
Source§impl<T: ComponentValue> TransformFetch<Added> for Mutable<T>
impl<T: ComponentValue> TransformFetch<Added> for Mutable<T>
impl Copy for Added
Auto Trait Implementations§
impl Freeze for Added
impl RefUnwindSafe for Added
impl Send for Added
impl Sync for Added
impl Unpin for Added
impl UnwindSafe for Added
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> 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