pub struct Entry {Show 13 fields
pub id: u64,
pub text: String,
pub text_alt: Vec<String>,
pub category: String,
pub tocfl_level: u32,
pub situation: String,
pub written_per_million: u64,
pub spoken_per_million: u64,
pub components: String,
pub zhuyin: String,
pub zhuyin_alt: Vec<String>,
pub pinyin: String,
pub pinyin_alt: Vec<String>,
}Fields§
§id: u64Ordinal
text: StringTraditional Chinese
text_alt: Vec<String>Other Variants
category: StringCategory Base, advanced etc. in Chinese, e.g. 基礎
tocfl_level: u32TOCFL Level, 1-7
situation: StringSituation the word is used
written_per_million: u64Count per million written
spoken_per_million: u64Count per million spoken
components: StringNo idea what that is. e.g. [[‘的’, [‘7457’, ‘8310’, ‘8568’]]]
zhuyin: StringZhuyin
zhuyin_alt: Vec<String>Pinyin Other Variants
pinyin: StringPinyin
pinyin_alt: Vec<String>Pinyin Other Variants
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Entry
impl<'de> Deserialize<'de> for Entry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Entry
impl StructuralPartialEq for Entry
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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