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