pub struct AgentConversation {
pub name: Option<Option<String>>,
pub description: Option<Option<String>>,
pub metadata: Option<Option<HashMap<String, Value>>>,
pub object: Option<Object>,
pub id: String,
pub created_at: String,
pub updated_at: String,
pub agent_id: String,
pub agent_version: Option<Option<Box<AgentVersion1>>>,
}Fields§
§name: Option<Option<String>>§description: Option<Option<String>>§metadata: Option<Option<HashMap<String, Value>>>Custom type for metadata with embedded validation.
object: Option<Object>§id: String§created_at: String§updated_at: String§agent_id: String§agent_version: Option<Option<Box<AgentVersion1>>>Implementations§
Trait Implementations§
Source§impl Clone for AgentConversation
impl Clone for AgentConversation
Source§fn clone(&self) -> AgentConversation
fn clone(&self) -> AgentConversation
Returns a duplicate of the value. Read more
1.0.0 · 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 AgentConversation
impl Debug for AgentConversation
Source§impl Default for AgentConversation
impl Default for AgentConversation
Source§fn default() -> AgentConversation
fn default() -> AgentConversation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentConversation
impl<'de> Deserialize<'de> for AgentConversation
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
Source§impl PartialEq for AgentConversation
impl PartialEq for AgentConversation
Source§impl Serialize for AgentConversation
impl Serialize for AgentConversation
impl StructuralPartialEq for AgentConversation
Auto Trait Implementations§
impl Freeze for AgentConversation
impl RefUnwindSafe for AgentConversation
impl Send for AgentConversation
impl Sync for AgentConversation
impl Unpin for AgentConversation
impl UnsafeUnpin for AgentConversation
impl UnwindSafe for AgentConversation
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