[][src]Struct kl_hyphenate_commons::dictionary::extended::Extended

pub struct Extended {
    pub language: Language,
    pub patterns: Patterns,
    pub exceptions: Exceptions,
    pub minima: (usize, usize),
}

A dictionary for extended Knuth–Liang hyphenation, based on the strategy described by Németh in "Automatic non-standard hyphenation in OpenOffice.org".

It comprises the working language, the set of extended patterns and exceptions, and the character boundaries for hyphenation.

Fields

language: Languagepatterns: Patternsexceptions: Exceptionsminima: (usize, usize)

The minimum number of chars from the start and end of a word where breaks may not occur.

Trait Implementations

impl Clone for Extended[src]

impl Debug for Extended[src]

impl<'de> Deserialize<'de> for Extended[src]

impl Eq for Extended[src]

impl PartialEq<Extended> for Extended[src]

impl Serialize for Extended[src]

impl StructuralEq for Extended[src]

impl StructuralPartialEq for Extended[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.