pub enum JsonRepairError {
UnexpectedEOF,
UnexpectedToken,
InvalidToken(String),
InvalidNumber(String),
FailedToParseRepairedJson {
details: String,
},
Unrepairable(String),
AllAttemptedRepairsFailed,
CouldNotConvertTheOutputOfDuplicateQuoteRemovalToJson,
SerdeParseError {
inner: Error,
},
}
Variants§
UnexpectedEOF
UnexpectedToken
InvalidToken(String)
InvalidNumber(String)
FailedToParseRepairedJson
Unrepairable(String)
AllAttemptedRepairsFailed
CouldNotConvertTheOutputOfDuplicateQuoteRemovalToJson
SerdeParseError
Trait Implementations§
Source§impl Debug for JsonRepairError
impl Debug for JsonRepairError
Source§impl Display for JsonRepairError
impl Display for JsonRepairError
Source§impl From<String> for JsonRepairError
impl From<String> for JsonRepairError
Source§impl PartialEq for JsonRepairError
impl PartialEq for JsonRepairError
Auto Trait Implementations§
impl Freeze for JsonRepairError
impl !RefUnwindSafe for JsonRepairError
impl Send for JsonRepairError
impl Sync for JsonRepairError
impl Unpin for JsonRepairError
impl !UnwindSafe for JsonRepairError
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