pub struct KeyedLoader { /* private fields */ }
Expand description
A loader with a key generating function
Implementations§
Trait Implementations§
Source§impl Clone for KeyedLoader
impl Clone for KeyedLoader
Source§fn clone(&self) -> KeyedLoader
fn clone(&self) -> KeyedLoader
Returns a copy 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 Freeze for KeyedLoader
impl RefUnwindSafe for KeyedLoader
impl Send for KeyedLoader
impl Sync for KeyedLoader
impl Unpin for KeyedLoader
impl UnwindSafe for KeyedLoader
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<Input, Output, E> ExtendNode<Input, Output, E> for Ewhere
E: Node<Input, Output = Output>,
impl<Input, Output, E> ExtendNode<Input, Output, E> for Ewhere
E: Node<Input, Output = Output>,
Source§impl<Input, Output, E> ExtendNodeMap<Input, Output, E> for E
impl<Input, Output, E> ExtendNodeMap<Input, Output, E> for E
Source§impl<Input, Output, E> ExtendNodeSplit<Input, Output, E> for E
impl<Input, Output, E> ExtendNodeSplit<Input, Output, E> for E
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