pub struct CollectResult<C, R> {
pub collection: C,
pub result: R,
}Fields§
§collection: C§result: RAuto Trait Implementations§
impl<C, R> Freeze for CollectResult<C, R>
impl<C, R> RefUnwindSafe for CollectResult<C, R>where
C: RefUnwindSafe,
R: RefUnwindSafe,
impl<C, R> Send for CollectResult<C, R>
impl<C, R> Sync for CollectResult<C, R>
impl<C, R> Unpin for CollectResult<C, R>
impl<C, R> UnwindSafe for CollectResult<C, R>where
C: UnwindSafe,
R: 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