pub struct LoadChain<Prev, L> {
pub prev: Prev,
pub load: L,
}Fields§
§prev: Prev§load: LTrait Implementations§
impl<Prev: Copy, L: Copy> Copy for LoadChain<Prev, L>
Auto Trait Implementations§
impl<Prev, L> Freeze for LoadChain<Prev, L>
impl<Prev, L> RefUnwindSafe for LoadChain<Prev, L>where
Prev: RefUnwindSafe,
L: RefUnwindSafe,
impl<Prev, L> Send for LoadChain<Prev, L>
impl<Prev, L> Sync for LoadChain<Prev, L>
impl<Prev, L> Unpin for LoadChain<Prev, L>
impl<Prev, L> UnwindSafe for LoadChain<Prev, L>where
Prev: UnwindSafe,
L: UnwindSafe,
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