Struct textwrap::NoHyphenation
source · pub struct NoHyphenation;
Expand description
Use this as a Options.splitter
to avoid any kind of
hyphenation:
use textwrap::{wrap, NoHyphenation, Options};
let options = Options::new(8).splitter(NoHyphenation);
assert_eq!(wrap("foo bar-baz", &options),
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.