pub struct MessageParseError {
pub message: String,
pub data: Option<Value>,
}Expand description
Error parsing a JSON message into a typed Message.
Raised when a message from the CLI is missing required fields or has unexpected structure.
Fields§
§message: StringHuman-readable parse failure message.
data: Option<Value>The raw JSON data that failed to parse, if available.
Implementations§
Trait Implementations§
Source§impl Clone for MessageParseError
impl Clone for MessageParseError
Source§fn clone(&self) -> MessageParseError
fn clone(&self) -> MessageParseError
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 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 Error
impl From<MessageParseError> for Error
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 UnsafeUnpin 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