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§
Source§impl FormatOptions
impl FormatOptions
Sourcepub fn compact() -> FormatOptions
pub fn compact() -> FormatOptions
Create compact formatting options.
Sourcepub fn pretty() -> FormatOptions
pub fn pretty() -> FormatOptions
Create pretty formatting options.
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
Source§impl Default for FormatOptions
impl Default for FormatOptions
Source§fn default() -> FormatOptions
fn default() -> FormatOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FormatOptions
impl RefUnwindSafe for FormatOptions
impl Send for FormatOptions
impl Sync for FormatOptions
impl Unpin for FormatOptions
impl UnsafeUnpin 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