pub struct AgentConversationSuccess {
pub conversation_id: String,
pub agent_id: String,
pub choices: Vec<AgentConversationChoice>,
}Expand description
Successful slide-conversation response.
Fields§
§conversation_id: StringConversation identifier.
agent_id: StringAgent identifier.
choices: Vec<AgentConversationChoice>Non-empty response choices.
Trait Implementations§
Source§impl Clone for AgentConversationSuccess
impl Clone for AgentConversationSuccess
Source§fn clone(&self) -> AgentConversationSuccess
fn clone(&self) -> AgentConversationSuccess
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 AgentConversationSuccess
impl Debug for AgentConversationSuccess
Auto Trait Implementations§
impl Freeze for AgentConversationSuccess
impl RefUnwindSafe for AgentConversationSuccess
impl Send for AgentConversationSuccess
impl Sync for AgentConversationSuccess
impl Unpin for AgentConversationSuccess
impl UnsafeUnpin for AgentConversationSuccess
impl UnwindSafe for AgentConversationSuccess
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