pub struct LexicalEntry {
pub entries: Vec<Entry>,
pub language: String,
pub lexical_category: LexicalCategory,
pub derivative_of: Option<Vec<DerivativeOf>>,
pub text: String,
}Fields§
§entries: Vec<Entry>§language: String§lexical_category: LexicalCategory§derivative_of: Option<Vec<DerivativeOf>>§text: StringTrait Implementations§
Source§impl Debug for LexicalEntry
impl Debug for LexicalEntry
Source§impl<'de> Deserialize<'de> for LexicalEntry
impl<'de> Deserialize<'de> for LexicalEntry
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
Source§impl Display for LexicalEntry
impl Display for LexicalEntry
Auto Trait Implementations§
impl Freeze for LexicalEntry
impl RefUnwindSafe for LexicalEntry
impl Send for LexicalEntry
impl Sync for LexicalEntry
impl Unpin for LexicalEntry
impl UnsafeUnpin for LexicalEntry
impl UnwindSafe for LexicalEntry
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