pub struct GraphInspectionNode {Show 13 fields
pub record_id: String,
pub tenant_id: String,
pub namespace: String,
pub actor_id: String,
pub kind: MemoryRecordKind,
pub summary: Option<String>,
pub quality_state: MemoryQualityState,
pub historical_state: MemoryHistoricalState,
pub episode_id: Option<String>,
pub continuity_state: Option<EpisodeContinuityState>,
pub conflict_state: Option<ConflictReviewState>,
pub importance_per_mille: u16,
pub updated_at_unix_ms: u64,
}Fields§
§record_id: String§tenant_id: String§namespace: String§actor_id: String§kind: MemoryRecordKind§summary: Option<String>§quality_state: MemoryQualityState§historical_state: MemoryHistoricalState§episode_id: Option<String>§continuity_state: Option<EpisodeContinuityState>§conflict_state: Option<ConflictReviewState>§importance_per_mille: u16§updated_at_unix_ms: u64Trait Implementations§
Source§impl Clone for GraphInspectionNode
impl Clone for GraphInspectionNode
Source§fn clone(&self) -> GraphInspectionNode
fn clone(&self) -> GraphInspectionNode
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 GraphInspectionNode
impl Debug for GraphInspectionNode
Source§impl<'de> Deserialize<'de> for GraphInspectionNode
impl<'de> Deserialize<'de> for GraphInspectionNode
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 Eq for GraphInspectionNode
Source§impl PartialEq for GraphInspectionNode
impl PartialEq for GraphInspectionNode
Source§fn eq(&self, other: &GraphInspectionNode) -> bool
fn eq(&self, other: &GraphInspectionNode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GraphInspectionNode
impl Serialize for GraphInspectionNode
impl StructuralPartialEq for GraphInspectionNode
Auto Trait Implementations§
impl Freeze for GraphInspectionNode
impl RefUnwindSafe for GraphInspectionNode
impl Send for GraphInspectionNode
impl Sync for GraphInspectionNode
impl Unpin for GraphInspectionNode
impl UnsafeUnpin for GraphInspectionNode
impl UnwindSafe for GraphInspectionNode
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