pub struct TemporalResult {
pub added: Vec<u64>,
pub corrected: Vec<(u64, u64)>,
pub unchanged: Vec<u64>,
pub potentially_stale: Vec<u64>,
}Expand description
Result of a temporal query.
Fields§
§added: Vec<u64>Nodes that exist in range_b but not range_a (new knowledge).
corrected: Vec<(u64, u64)>Nodes in range_a that were superseded by nodes in range_b.
unchanged: Vec<u64>Nodes in range_a with no corresponding update in range_b (unchanged).
potentially_stale: Vec<u64>Nodes only in range_a that have low decay scores (potentially stale).
Auto Trait Implementations§
impl Freeze for TemporalResult
impl RefUnwindSafe for TemporalResult
impl Send for TemporalResult
impl Sync for TemporalResult
impl Unpin for TemporalResult
impl UnsafeUnpin for TemporalResult
impl UnwindSafe for TemporalResult
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