pub struct CopyResolution<R> {
pub operations: Vec<CopyOperation<R>>,
pub work: CopyResolutionWork,
}Expand description
Dependency-ordered realization of one parallel assignment.
Fields§
§operations: Vec<CopyOperation<R>>§work: CopyResolutionWorkTrait Implementations§
Source§impl<R: Clone> Clone for CopyResolution<R>
impl<R: Clone> Clone for CopyResolution<R>
Source§fn clone(&self) -> CopyResolution<R>
fn clone(&self) -> CopyResolution<R>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<R: Debug> Debug for CopyResolution<R>
impl<R: Debug> Debug for CopyResolution<R>
impl<R: Eq> Eq for CopyResolution<R>
Source§impl<R: PartialEq> PartialEq for CopyResolution<R>
impl<R: PartialEq> PartialEq for CopyResolution<R>
impl<R: PartialEq> StructuralPartialEq for CopyResolution<R>
Auto Trait Implementations§
impl<R> Freeze for CopyResolution<R>
impl<R> RefUnwindSafe for CopyResolution<R>
impl<R> Send for CopyResolution<R>
impl<R> Sync for CopyResolution<R>
impl<R> Unpin for CopyResolution<R>
impl<R> UnsafeUnpin for CopyResolution<R>
impl<R> UnwindSafe for CopyResolution<R>
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