pub struct QueryMemoryResponse {
pub belief: BeliefProjection,
}Expand description
Response from a memory query — the canonical belief projection.
Fields§
§belief: BeliefProjectionCanonical fold result; computed at read time, never persisted.
Trait Implementations§
Source§impl Clone for QueryMemoryResponse
impl Clone for QueryMemoryResponse
Source§fn clone(&self) -> QueryMemoryResponse
fn clone(&self) -> QueryMemoryResponse
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 QueryMemoryResponse
impl Debug for QueryMemoryResponse
Source§impl<'de> Deserialize<'de> for QueryMemoryResponse
impl<'de> Deserialize<'de> for QueryMemoryResponse
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
Auto Trait Implementations§
impl Freeze for QueryMemoryResponse
impl RefUnwindSafe for QueryMemoryResponse
impl Send for QueryMemoryResponse
impl Sync for QueryMemoryResponse
impl Unpin for QueryMemoryResponse
impl UnsafeUnpin for QueryMemoryResponse
impl UnwindSafe for QueryMemoryResponse
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