pub struct JsonFixerConfig {
pub preserve: bool,
pub space_between: bool,
pub beautify: bool,
pub indent_style: IndentStyle,
pub indent_size: usize,
pub sort_keys: bool,
}Fields§
§preserve: bool§space_between: bool§beautify: bool§indent_style: IndentStyle§indent_size: usize§sort_keys: boolImplementations§
Trait Implementations§
Source§impl Clone for JsonFixerConfig
impl Clone for JsonFixerConfig
Source§fn clone(&self) -> JsonFixerConfig
fn clone(&self) -> JsonFixerConfig
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 JsonFixerConfig
impl Debug for JsonFixerConfig
Auto Trait Implementations§
impl Freeze for JsonFixerConfig
impl RefUnwindSafe for JsonFixerConfig
impl Send for JsonFixerConfig
impl Sync for JsonFixerConfig
impl Unpin for JsonFixerConfig
impl UnwindSafe for JsonFixerConfig
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