pub enum MemoryEventKind {
Signal,
Hypothesis,
Attempt,
Outcome,
ConfidenceEdge,
GeneSelected,
CapsuleCreated,
}Expand description
Memory Graph Event kinds
Variants§
Signal
A signal was detected
Hypothesis
A hypothesis was formed
Attempt
An attempt was made
Outcome
An outcome was observed
ConfidenceEdge
A confidence edge between nodes
GeneSelected
Gene selection
CapsuleCreated
Capsule created
Trait Implementations§
Source§impl Clone for MemoryEventKind
impl Clone for MemoryEventKind
Source§fn clone(&self) -> MemoryEventKind
fn clone(&self) -> MemoryEventKind
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 MemoryEventKind
impl Debug for MemoryEventKind
Source§impl<'de> Deserialize<'de> for MemoryEventKind
impl<'de> Deserialize<'de> for MemoryEventKind
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 MemoryEventKind
impl PartialEq for MemoryEventKind
Source§impl Serialize for MemoryEventKind
impl Serialize for MemoryEventKind
impl Eq for MemoryEventKind
impl StructuralPartialEq for MemoryEventKind
Auto Trait Implementations§
impl Freeze for MemoryEventKind
impl RefUnwindSafe for MemoryEventKind
impl Send for MemoryEventKind
impl Sync for MemoryEventKind
impl Unpin for MemoryEventKind
impl UnsafeUnpin for MemoryEventKind
impl UnwindSafe for MemoryEventKind
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