pub struct ImportAgentMemoryResponse {
pub imported: bool,
pub agent_id: String,
pub offered: i64,
pub added: i64,
pub duplicates: i64,
}Expand description
ImportAgentMemoryResponse model.
Fields§
§imported: bool§agent_id: String§offered: i64Entries in the file.
added: i64New entries stored.
duplicates: i64Entries the store already had.
Trait Implementations§
Source§impl Clone for ImportAgentMemoryResponse
impl Clone for ImportAgentMemoryResponse
Source§fn clone(&self) -> ImportAgentMemoryResponse
fn clone(&self) -> ImportAgentMemoryResponse
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 ImportAgentMemoryResponse
impl Debug for ImportAgentMemoryResponse
Source§impl Default for ImportAgentMemoryResponse
impl Default for ImportAgentMemoryResponse
Source§fn default() -> ImportAgentMemoryResponse
fn default() -> ImportAgentMemoryResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ImportAgentMemoryResponse
impl<'de> Deserialize<'de> for ImportAgentMemoryResponse
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
impl StructuralPartialEq for ImportAgentMemoryResponse
Auto Trait Implementations§
impl Freeze for ImportAgentMemoryResponse
impl RefUnwindSafe for ImportAgentMemoryResponse
impl Send for ImportAgentMemoryResponse
impl Sync for ImportAgentMemoryResponse
impl Unpin for ImportAgentMemoryResponse
impl UnsafeUnpin for ImportAgentMemoryResponse
impl UnwindSafe for ImportAgentMemoryResponse
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