pub struct NarrativeResponse {
pub content: String,
pub generated_at: i64,
pub is_stale: bool,
pub memory_count: u64,
}Expand description
Response type for the profile narrative endpoint.
Fields§
§content: String§generated_at: i64§is_stale: bool§memory_count: u64Trait Implementations§
Source§impl Clone for NarrativeResponse
impl Clone for NarrativeResponse
Source§fn clone(&self) -> NarrativeResponse
fn clone(&self) -> NarrativeResponse
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 NarrativeResponse
impl Debug for NarrativeResponse
Source§impl<'de> Deserialize<'de> for NarrativeResponse
impl<'de> Deserialize<'de> for NarrativeResponse
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 NarrativeResponse
impl RefUnwindSafe for NarrativeResponse
impl Send for NarrativeResponse
impl Sync for NarrativeResponse
impl Unpin for NarrativeResponse
impl UnsafeUnpin for NarrativeResponse
impl UnwindSafe for NarrativeResponse
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