pub enum JsonFormatError {
LineTooLong {
line: usize,
length: usize,
max: usize,
},
InvalidIndentation {
line: usize,
},
}
Variants§
Trait Implementations§
Source§impl Debug for JsonFormatError
impl Debug for JsonFormatError
Auto Trait Implementations§
impl Freeze for JsonFormatError
impl RefUnwindSafe for JsonFormatError
impl Send for JsonFormatError
impl Sync for JsonFormatError
impl Unpin for JsonFormatError
impl UnwindSafe for JsonFormatError
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