pub struct WordInfo {
pub surface: String,
pub headword_length: u16,
pub pos_id: i16,
pub normalized_form: String,
pub dictionary_form_word_id: i32,
pub dictionary_form: String,
pub reading_form: String,
pub a_unit_split: Vec<i32>,
pub b_unit_split: Vec<i32>,
pub word_structure: Vec<i32>,
pub synonym_gids: Vec<i32>,
}Expand description
Word metadata from the dictionary.
Fields§
§surface: String§headword_length: u16§pos_id: i16§normalized_form: String§dictionary_form_word_id: i32§dictionary_form: String§reading_form: String§a_unit_split: Vec<i32>§b_unit_split: Vec<i32>§word_structure: Vec<i32>§synonym_gids: Vec<i32>Trait Implementations§
Auto Trait Implementations§
impl Freeze for WordInfo
impl RefUnwindSafe for WordInfo
impl Send for WordInfo
impl Sync for WordInfo
impl Unpin for WordInfo
impl UnsafeUnpin for WordInfo
impl UnwindSafe for WordInfo
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