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 RefUnwindSafe for BreakType
impl Send for BreakType
impl Sync for BreakType
impl Unpin for BreakType
impl UnwindSafe for BreakType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more