pub struct PackConflict {
pub contradiction_id: ContradictionId,
pub posture: BoundaryContradictionState,
pub refs: Vec<ContextRefId>,
pub summary: String,
}Expand description
Conflict surfaced to the consumer.
Fields§
§contradiction_id: ContradictionIdContradiction identifier.
posture: BoundaryContradictionStateAdvisory contradiction posture supplied by retrieval/memory resolution.
refs: Vec<ContextRefId>Refs participating in the conflict.
summary: StringCompact conflict summary.
Trait Implementations§
Source§impl Clone for PackConflict
impl Clone for PackConflict
Source§fn clone(&self) -> PackConflict
fn clone(&self) -> PackConflict
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 Debug for PackConflict
impl Debug for PackConflict
Source§impl<'de> Deserialize<'de> for PackConflict
impl<'de> Deserialize<'de> for PackConflict
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 PackConflict
impl PartialEq for PackConflict
Source§fn eq(&self, other: &PackConflict) -> bool
fn eq(&self, other: &PackConflict) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PackConflict
impl Serialize for PackConflict
impl Eq for PackConflict
impl StructuralPartialEq for PackConflict
Auto Trait Implementations§
impl Freeze for PackConflict
impl RefUnwindSafe for PackConflict
impl Send for PackConflict
impl Sync for PackConflict
impl Unpin for PackConflict
impl UnsafeUnpin for PackConflict
impl UnwindSafe for PackConflict
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