Struct textwrap::HyphenSplitter [−][src]
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 Wrapper::new
.
Trait Implementations
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.
Auto Trait Implementations
impl RefUnwindSafe for HyphenSplitter
impl Send for HyphenSplitter
impl Sync for HyphenSplitter
impl Unpin for HyphenSplitter
impl UnwindSafe for HyphenSplitter
Blanket Implementations
Mutably borrows from an owned value. Read more