pub struct AgentConversationFailure {
pub conversation_id: Option<String>,
pub agent_id: Option<String>,
pub error: AgentErrorDetail,
}Expand description
Failed slide-conversation response.
Fields§
§conversation_id: Option<String>Conversation identifier, when returned.
agent_id: Option<String>Agent identifier, when returned.
error: AgentErrorDetailTyped error detail.
Trait Implementations§
Source§impl Clone for AgentConversationFailure
impl Clone for AgentConversationFailure
Source§fn clone(&self) -> AgentConversationFailure
fn clone(&self) -> AgentConversationFailure
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 AgentConversationFailure
impl Debug for AgentConversationFailure
Auto Trait Implementations§
impl Freeze for AgentConversationFailure
impl RefUnwindSafe for AgentConversationFailure
impl Send for AgentConversationFailure
impl Sync for AgentConversationFailure
impl Unpin for AgentConversationFailure
impl UnsafeUnpin for AgentConversationFailure
impl UnwindSafe for AgentConversationFailure
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