pub enum StreamAlert {
Contradiction {
memory_id: MemoryId,
ai_said: String,
stored: String,
},
Forgotten {
memory_id: MemoryId,
summary: String,
},
Correction {
memory_id: MemoryId,
old: String,
new: String,
},
Reinforcement {
memory_id: MemoryId,
},
}Variants§
Trait Implementations§
Source§impl Clone for StreamAlert
impl Clone for StreamAlert
Source§fn clone(&self) -> StreamAlert
fn clone(&self) -> StreamAlert
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 moreAuto Trait Implementations§
impl Freeze for StreamAlert
impl RefUnwindSafe for StreamAlert
impl Send for StreamAlert
impl Sync for StreamAlert
impl Unpin for StreamAlert
impl UnsafeUnpin for StreamAlert
impl UnwindSafe for StreamAlert
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