Struct textwrap::NoHyphenation [−][src]
pub struct NoHyphenation;
Expand description
Use this as a Wrapper.splitter
to avoid any kind of
hyphenation:
use textwrap::{Wrapper, NoHyphenation};
let wrapper = Wrapper::with_splitter(8, NoHyphenation);
assert_eq!(wrapper.wrap("foo bar-baz"), vec!["foo", "bar-baz"]);
Trait Implementations
NoHyphenation
implements WordSplitter
by not splitting the
word at all.
Auto Trait Implementations
impl RefUnwindSafe for NoHyphenation
impl Send for NoHyphenation
impl Sync for NoHyphenation
impl Unpin for NoHyphenation
impl UnwindSafe for NoHyphenation
Blanket Implementations
Mutably borrows from an owned value. Read more