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

pub struct Tally {
    pub standard: Vec<Locus>,
    pub subregion: Option<(Locus, Subregion)>,
}

The partial score carried by an extended hyphenation pattern.

Fields

standard: Vec<Locus>

The pattern tally, equivalent to that found in standard patterns.

subregion: Option<(Locus, Subregion)>

An optional subregion which may replace part of the string around the opportunity.

Trait Implementations

impl Clone for Tally[src]

impl Debug for Tally[src]

impl Default for Tally[src]

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

impl Eq for Tally[src]

impl Hash for Tally[src]

impl PartialEq<Tally> for Tally[src]

impl Serialize for Tally[src]

impl StructuralEq for Tally[src]

impl StructuralPartialEq for Tally[src]

Auto Trait Implementations

impl RefUnwindSafe for Tally

impl Send for Tally

impl Sync for Tally

impl Unpin for Tally

impl UnwindSafe for Tally

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.