pub enum AgentResponseParseError {
Empty,
InvalidFormat {
reason: String,
},
}Expand description
Structured response parsing failure details.
Variants§
Empty
Response was empty or whitespace-only.
InvalidFormat
Response was JSON, but it did not satisfy the structured protocol contract.
Trait Implementations§
Source§impl Clone for AgentResponseParseError
impl Clone for AgentResponseParseError
Source§fn clone(&self) -> AgentResponseParseError
fn clone(&self) -> AgentResponseParseError
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 AgentResponseParseError
impl Debug for AgentResponseParseError
Source§impl Display for AgentResponseParseError
impl Display for AgentResponseParseError
impl Eq for AgentResponseParseError
Source§impl Error for AgentResponseParseError
impl Error for AgentResponseParseError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for AgentResponseParseError
impl PartialEq for AgentResponseParseError
Source§fn eq(&self, other: &AgentResponseParseError) -> bool
fn eq(&self, other: &AgentResponseParseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AgentResponseParseError
Auto Trait Implementations§
impl Freeze for AgentResponseParseError
impl RefUnwindSafe for AgentResponseParseError
impl Send for AgentResponseParseError
impl Sync for AgentResponseParseError
impl Unpin for AgentResponseParseError
impl UnsafeUnpin for AgentResponseParseError
impl UnwindSafe for AgentResponseParseError
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