pub enum LineWrap {
None,
Overflow,
}
Expand description
Indicates when to wrap the current line to a new line. See also Direction
.
Variants
None
Never wrap to a new line.
Overflow
Wrap to a new line when the available width is exhausted.
Implementations
TODO(JP): Replace these with LineWrap::default() when https://github.com/rust-lang/rust/issues/67792 gets done
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for LineWrap
impl UnwindSafe for LineWrap
Blanket Implementations
Mutably borrows from an owned value. Read more