pub struct EntityLoaderWithSelf<R: EntityTrait, S: EntityTrait>(pub R, pub S);Expand description
Subject to change, not yet stable
Tuple Fieldsยง
ยง0: Rยง1: STrait Implementationsยง
Sourceยงimpl<R: Clone + EntityTrait, S: Clone + EntityTrait> Clone for EntityLoaderWithSelf<R, S>
impl<R: Clone + EntityTrait, S: Clone + EntityTrait> Clone for EntityLoaderWithSelf<R, S>
Sourceยงfn clone(&self) -> EntityLoaderWithSelf<R, S>
fn clone(&self) -> EntityLoaderWithSelf<R, S>
Returns a duplicate of the value. Read more
1.0.0ยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSourceยงimpl<R: Debug + EntityTrait, S: Debug + EntityTrait> Debug for EntityLoaderWithSelf<R, S>
impl<R: Debug + EntityTrait, S: Debug + EntityTrait> Debug for EntityLoaderWithSelf<R, S>
Sourceยงimpl<R: PartialEq + EntityTrait, S: PartialEq + EntityTrait> PartialEq for EntityLoaderWithSelf<R, S>
impl<R: PartialEq + EntityTrait, S: PartialEq + EntityTrait> PartialEq for EntityLoaderWithSelf<R, S>
impl<R: Copy + EntityTrait, S: Copy + EntityTrait> Copy for EntityLoaderWithSelf<R, S>
impl<R: EntityTrait, S: EntityTrait> StructuralPartialEq for EntityLoaderWithSelf<R, S>
Auto Trait Implementationsยง
impl<R, S> Freeze for EntityLoaderWithSelf<R, S>
impl<R, S> RefUnwindSafe for EntityLoaderWithSelf<R, S>where
R: RefUnwindSafe,
S: RefUnwindSafe,
impl<R, S> Send for EntityLoaderWithSelf<R, S>
impl<R, S> Sync for EntityLoaderWithSelf<R, S>
impl<R, S> Unpin for EntityLoaderWithSelf<R, S>
impl<R, S> UnwindSafe for EntityLoaderWithSelf<R, S>where
R: UnwindSafe,
S: UnwindSafe,
Blanket Implementationsยง
ยงimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
ยงfn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
ยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
ยงunsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
๐ฌThis is a nightly-only experimental API. (
clone_to_uninit)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