pub struct PrimitiveCharacter {
pub unicode: usize,
pub tygf: u8,
pub gb2312: bool,
pub name: Option<String>,
pub gf0014_id: Option<usize>,
pub readings: Vec<Reading>,
pub glyphs: Vec<Glyph>,
pub ambiguous: bool,
}Fields§
§unicode: usize§tygf: u8§gb2312: bool§name: Option<String>§gf0014_id: Option<usize>§readings: Vec<Reading>§glyphs: Vec<Glyph>§ambiguous: boolTrait Implementations§
Source§impl Clone for PrimitiveCharacter
impl Clone for PrimitiveCharacter
Source§fn clone(&self) -> PrimitiveCharacter
fn clone(&self) -> PrimitiveCharacter
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PrimitiveCharacter
impl Debug for PrimitiveCharacter
Source§impl<'de> Deserialize<'de> for PrimitiveCharacter
impl<'de> Deserialize<'de> for PrimitiveCharacter
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
Auto Trait Implementations§
impl Freeze for PrimitiveCharacter
impl RefUnwindSafe for PrimitiveCharacter
impl Send for PrimitiveCharacter
impl Sync for PrimitiveCharacter
impl Unpin for PrimitiveCharacter
impl UnwindSafe for PrimitiveCharacter
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