Struct textwrap::HyphenSplitter
source · pub struct HyphenSplitter;Expand description
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 Options::new.
Trait Implementations§
source§impl Clone for HyphenSplitter
impl Clone for HyphenSplitter
source§fn clone(&self) -> HyphenSplitter
fn clone(&self) -> HyphenSplitter
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 HyphenSplitter
impl Debug for HyphenSplitter
source§impl WordSplitter for HyphenSplitter
impl WordSplitter for HyphenSplitter
HyphenSplitter is the default WordSplitter used by
Options::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 into "--" and "foo-bar".