pub struct MemoryGovernanceSuggestion {
pub entry_id: String,
pub relationship: MemoryGovernanceRelationship,
pub confidence: f32,
pub rationale: String,
}Expand description
Persisted governance suggestion for operator review.
Fields§
§entry_id: StringRelated entry id (workspace-relative path when available).
relationship: MemoryGovernanceRelationshipRelationship between the current entry and the related entry.
confidence: f32Confidence score for the suggestion.
rationale: StringHuman-readable rationale shown in operator tooling.
Trait Implementations§
Source§impl Clone for MemoryGovernanceSuggestion
impl Clone for MemoryGovernanceSuggestion
Source§fn clone(&self) -> MemoryGovernanceSuggestion
fn clone(&self) -> MemoryGovernanceSuggestion
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 MemoryGovernanceSuggestion
impl Debug for MemoryGovernanceSuggestion
Source§impl<'de> Deserialize<'de> for MemoryGovernanceSuggestion
impl<'de> Deserialize<'de> for MemoryGovernanceSuggestion
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
impl StructuralPartialEq for MemoryGovernanceSuggestion
Auto Trait Implementations§
impl Freeze for MemoryGovernanceSuggestion
impl RefUnwindSafe for MemoryGovernanceSuggestion
impl Send for MemoryGovernanceSuggestion
impl Sync for MemoryGovernanceSuggestion
impl Unpin for MemoryGovernanceSuggestion
impl UnwindSafe for MemoryGovernanceSuggestion
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