pub struct AsOfMemory {
pub memory_id: String,
pub scope: String,
pub kind: String,
pub text: String,
pub created_at: String,
pub retired_at: Option<String>,
pub retired_reason: Option<String>,
}Expand description
One memory as the brain held it at the as-of time.
Fields§
§memory_id: String§scope: String§kind: String§text: String§created_at: String§retired_at: Option<String>Present when this memory has since been retired — the as-of view shows it as live, and this says what became of it. The whole point of the query is usually to see a belief that is no longer current.
retired_reason: Option<String>Trait Implementations§
Source§impl Clone for AsOfMemory
impl Clone for AsOfMemory
Source§fn clone(&self) -> AsOfMemory
fn clone(&self) -> AsOfMemory
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 AsOfMemory
impl RefUnwindSafe for AsOfMemory
impl Send for AsOfMemory
impl Sync for AsOfMemory
impl Unpin for AsOfMemory
impl UnsafeUnpin for AsOfMemory
impl UnwindSafe for AsOfMemory
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