pub struct FixReport {
pub original: String,
pub fixed: String,
pub steps: Vec<String>,
pub success: bool,
}
Expand description
Robust JSON fixer for malformed AI or chatbot output. Designed to recover from common formatting issues in JSON-like text.
Fields§
§original: String
§fixed: String
§steps: Vec<String>
§success: bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FixReport
impl RefUnwindSafe for FixReport
impl Send for FixReport
impl Sync for FixReport
impl Unpin for FixReport
impl UnwindSafe for FixReport
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