pub enum WordHyphenation {
Disabled,
Enabled {
min_word_chars: usize,
marker: char,
},
}Variants§
Trait Implementations§
Source§impl Clone for WordHyphenation
impl Clone for WordHyphenation
Source§fn clone(&self) -> WordHyphenation
fn clone(&self) -> WordHyphenation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WordHyphenation
impl Debug for WordHyphenation
Source§impl Default for WordHyphenation
impl Default for WordHyphenation
Source§impl PartialEq for WordHyphenation
impl PartialEq for WordHyphenation
Source§fn eq(&self, other: &WordHyphenation) -> bool
fn eq(&self, other: &WordHyphenation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WordHyphenation
Auto Trait Implementations§
impl Freeze for WordHyphenation
impl RefUnwindSafe for WordHyphenation
impl Send for WordHyphenation
impl Sync for WordHyphenation
impl Unpin for WordHyphenation
impl UnsafeUnpin for WordHyphenation
impl UnwindSafe for WordHyphenation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more