Struct textwrap::HyphenSplitter
[−]
[src]
pub struct HyphenSplitter;
Simple and default way to split words: splitting on existing hyphens only.
You probably don't need to use this type since it's already used
by default by Wrapper::new
.
Trait Implementations
impl Clone for HyphenSplitter
[src]
fn clone(&self) -> HyphenSplitter
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for HyphenSplitter
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl WordSplitter for HyphenSplitter
[src]
HyphenSplitter
is the default WordSplitter
used by
Wrapper::new
. It will split words on any existing hyphens in the
word.
It will only use hyphens that are surrounded by alphanumeric characters, which prevents a word like "--foo-bar" from being split on the first or second hyphen.