pub enum PrintMode {
SingleLine,
MultiLine {
indent_size: usize,
base_indent: usize,
first_line_indent: usize,
},
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PrintMode
impl RefUnwindSafe for PrintMode
impl Send for PrintMode
impl Sync for PrintMode
impl Unpin for PrintMode
impl UnwindSafe for PrintMode
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