pub enum BreakType {
Column,
Page,
TextWrapping,
}
Expand description
Specifies the break type of a break
The default value is TextWrapping.
Variants§
Column
Text restarts on the next column.
Page
Text restarts on the next page.
TextWrapping
Text restarts on the next line.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BreakType
impl RefUnwindSafe for BreakType
impl Send for BreakType
impl Sync for BreakType
impl Unpin for BreakType
impl UnwindSafe for BreakType
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