pub enum CopyOverlapDecision {
Overlap,
Serialize,
}Expand description
Verdict for can_overlap_copy_with_kernel.
Variants§
Overlap
Copy can run on a side stream concurrently with the kernel - the kernel does not read the destination slot.
Serialize
Kernel reads the slot the copy targets - must serialise (copy completes before kernel starts).
Trait Implementations§
Source§impl Clone for CopyOverlapDecision
impl Clone for CopyOverlapDecision
Source§fn clone(&self) -> CopyOverlapDecision
fn clone(&self) -> CopyOverlapDecision
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 moreimpl Copy for CopyOverlapDecision
Source§impl Debug for CopyOverlapDecision
impl Debug for CopyOverlapDecision
impl Eq for CopyOverlapDecision
Source§impl PartialEq for CopyOverlapDecision
impl PartialEq for CopyOverlapDecision
impl StructuralPartialEq for CopyOverlapDecision
Auto Trait Implementations§
impl Freeze for CopyOverlapDecision
impl RefUnwindSafe for CopyOverlapDecision
impl Send for CopyOverlapDecision
impl Sync for CopyOverlapDecision
impl Unpin for CopyOverlapDecision
impl UnsafeUnpin for CopyOverlapDecision
impl UnwindSafe for CopyOverlapDecision
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.