[][src]Struct lindera_core::core::character_definition::CharacterDefinitions

pub struct CharacterDefinitions {
    pub category_definitions: Vec<CategoryData>,
    pub category_names: Vec<String>,
    pub mapping: LookupTable<CategoryId>,
}

Fields

category_definitions: Vec<CategoryData>category_names: Vec<String>mapping: LookupTable<CategoryId>

Methods

impl CharacterDefinitions[src]

pub fn categories(&self) -> &[String][src]

pub fn load(char_def_data: &[u8]) -> CharacterDefinitions[src]

pub fn lookup_definition(&self, category_id: CategoryId) -> &CategoryData[src]

pub fn category_name(&self, category_id: CategoryId) -> &str[src]

pub fn lookup_categories(&self, c: char) -> &[CategoryId][src]

Trait Implementations

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

impl Serialize for CharacterDefinitions[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: Deserialize<'de>, 
[src]

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

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

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.