pub struct LlmJsonParseError {
pub path: String,
pub expected: String,
pub description: String,
}Expand description
Detailed parsing error emitted by the lenient parser or serde validation.
Fields§
§path: String§expected: String§description: StringTrait Implementations§
Source§impl Clone for LlmJsonParseError
impl Clone for LlmJsonParseError
Source§fn clone(&self) -> LlmJsonParseError
fn clone(&self) -> LlmJsonParseError
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 LlmJsonParseError
impl Debug for LlmJsonParseError
Source§impl PartialEq for LlmJsonParseError
impl PartialEq for LlmJsonParseError
impl Eq for LlmJsonParseError
impl StructuralPartialEq for LlmJsonParseError
Auto Trait Implementations§
impl Freeze for LlmJsonParseError
impl RefUnwindSafe for LlmJsonParseError
impl Send for LlmJsonParseError
impl Sync for LlmJsonParseError
impl Unpin for LlmJsonParseError
impl UnsafeUnpin for LlmJsonParseError
impl UnwindSafe for LlmJsonParseError
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