pub struct MessageParseError {
pub message: String,
pub data: Option<Value>,
}Expand description
Error when message parsing fails
Fields§
§message: StringError message
data: Option<Value>The data that failed to parse
Implementations§
Trait Implementations§
Source§impl Debug for MessageParseError
impl Debug for MessageParseError
Source§impl Display for MessageParseError
impl Display for MessageParseError
Source§impl Error for MessageParseError
impl Error for MessageParseError
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 From<MessageParseError> for ClaudeError
impl From<MessageParseError> for ClaudeError
Source§fn from(source: MessageParseError) -> Self
fn from(source: MessageParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MessageParseError
impl RefUnwindSafe for MessageParseError
impl Send for MessageParseError
impl Sync for MessageParseError
impl Unpin for MessageParseError
impl UnwindSafe for MessageParseError
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