pub enum MemoryGovernanceRelationship {
Duplicate,
ConflictsWith,
SupersededBy,
}Expand description
Relationship produced by the governance-analysis pass.
Variants§
Duplicate
Two entries appear to represent the same durable knowledge.
ConflictsWith
Two entries carry contradictory durable knowledge.
SupersededBy
This entry appears weaker than a newer/better replacement.
Trait Implementations§
Source§impl Clone for MemoryGovernanceRelationship
impl Clone for MemoryGovernanceRelationship
Source§fn clone(&self) -> MemoryGovernanceRelationship
fn clone(&self) -> MemoryGovernanceRelationship
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 MemoryGovernanceRelationship
impl Debug for MemoryGovernanceRelationship
Source§impl<'de> Deserialize<'de> for MemoryGovernanceRelationship
impl<'de> Deserialize<'de> for MemoryGovernanceRelationship
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 PartialEq for MemoryGovernanceRelationship
impl PartialEq for MemoryGovernanceRelationship
Source§fn eq(&self, other: &MemoryGovernanceRelationship) -> bool
fn eq(&self, other: &MemoryGovernanceRelationship) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MemoryGovernanceRelationship
impl Eq for MemoryGovernanceRelationship
impl StructuralPartialEq for MemoryGovernanceRelationship
Auto Trait Implementations§
impl Freeze for MemoryGovernanceRelationship
impl RefUnwindSafe for MemoryGovernanceRelationship
impl Send for MemoryGovernanceRelationship
impl Sync for MemoryGovernanceRelationship
impl Unpin for MemoryGovernanceRelationship
impl UnwindSafe for MemoryGovernanceRelationship
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