Struct textwrap::NoHyphenation
source · 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§
source§impl Clone for NoHyphenation
impl Clone for NoHyphenation
source§fn clone(&self) -> NoHyphenation
fn clone(&self) -> NoHyphenation
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for NoHyphenation
impl Debug for NoHyphenation
source§impl WordSplitter for NoHyphenation
impl WordSplitter for NoHyphenation
NoHyphenation
implements WordSplitter
by not splitting the
word at all.