pub struct FormatOptions {
pub indent_size: usize,
pub compact: bool,
pub trailing_commas: bool,
pub max_line_length: usize,
pub sort_keys: bool,
}Expand description
Configuration options for RSON formatting.
Fields§
§indent_size: usizeNumber of spaces per indentation level
compact: boolWhether to use compact mode (minimal whitespace)
trailing_commas: boolWhether to include trailing commas
max_line_length: usizeMaximum line length before wrapping
sort_keys: boolWhether to sort map keys
Implementations§
Trait Implementations§
Source§impl Clone for FormatOptions
impl Clone for FormatOptions
Source§fn clone(&self) -> FormatOptions
fn clone(&self) -> FormatOptions
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 FormatOptions
impl Debug for FormatOptions
Auto Trait Implementations§
impl Freeze for FormatOptions
impl RefUnwindSafe for FormatOptions
impl Send for FormatOptions
impl Sync for FormatOptions
impl Unpin for FormatOptions
impl UnwindSafe for FormatOptions
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