pub enum OverlapPriority {
None,
Low,
Medium,
High,
}Expand description
Priority classification for overlap tile scheduling.
Variants§
None
No dependency edges and no indirect coupling — skip by default.
Low
Indirect coupling only (shared transitive workspace deps).
Medium
1–2 direct dependency edges between compartments.
High
3+ direct dependency edges — strong coupling, analyze first.
Trait Implementations§
Source§impl Clone for OverlapPriority
impl Clone for OverlapPriority
Source§fn clone(&self) -> OverlapPriority
fn clone(&self) -> OverlapPriority
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OverlapPriority
impl Debug for OverlapPriority
Source§impl<'de> Deserialize<'de> for OverlapPriority
impl<'de> Deserialize<'de> for OverlapPriority
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for OverlapPriority
impl Ord for OverlapPriority
Source§fn cmp(&self, other: &OverlapPriority) -> Ordering
fn cmp(&self, other: &OverlapPriority) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OverlapPriority
impl PartialEq for OverlapPriority
Source§impl PartialOrd for OverlapPriority
impl PartialOrd for OverlapPriority
Source§impl Serialize for OverlapPriority
impl Serialize for OverlapPriority
impl Copy for OverlapPriority
impl Eq for OverlapPriority
impl StructuralPartialEq for OverlapPriority
Auto Trait Implementations§
impl Freeze for OverlapPriority
impl RefUnwindSafe for OverlapPriority
impl Send for OverlapPriority
impl Sync for OverlapPriority
impl Unpin for OverlapPriority
impl UnsafeUnpin for OverlapPriority
impl UnwindSafe for OverlapPriority
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