pub struct Resolution<E> {
pub groups: Vec<Group>,
pub residual: Vec<Entry<E>>,
}Expand description
What a strategy returns: the groups it pulled and the residual it left.
groups’ member ids and residual’s ids together partition the input ids.
Fields§
§groups: Vec<Group>§residual: Vec<Entry<E>>Trait Implementations§
Auto Trait Implementations§
impl<E> Freeze for Resolution<E>
impl<E> RefUnwindSafe for Resolution<E>where
E: RefUnwindSafe,
impl<E> Send for Resolution<E>where
E: Send,
impl<E> Sync for Resolution<E>where
E: Sync,
impl<E> Unpin for Resolution<E>where
E: Unpin,
impl<E> UnsafeUnpin for Resolution<E>
impl<E> UnwindSafe for Resolution<E>where
E: 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