pub struct GenSeparatedValuesOptions {
pub prefer_hanging: bool,
pub force_use_new_lines: bool,
pub allow_blank_lines: bool,
pub indent_width: u8,
pub single_line_options: SingleLineOptions,
pub multi_line_options: MultiLineOptions,
pub force_possible_newline_at_start: bool,
}
Fields§
§prefer_hanging: bool
§force_use_new_lines: bool
§allow_blank_lines: bool
§indent_width: u8
§single_line_options: SingleLineOptions
§multi_line_options: MultiLineOptions
§force_possible_newline_at_start: bool
Forces a possible newline at the start when there are values. If this isn’t used, then a possible newline won’t happen when the value is below the line
Auto Trait Implementations§
impl Freeze for GenSeparatedValuesOptions
impl !RefUnwindSafe for GenSeparatedValuesOptions
impl !Send for GenSeparatedValuesOptions
impl !Sync for GenSeparatedValuesOptions
impl Unpin for GenSeparatedValuesOptions
impl !UnwindSafe for GenSeparatedValuesOptions
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