pub struct IndexEntry {
pub lemma: String,
pub pos: SynsetType,
pub synset_cnt: u32,
pub ptr_symbols: Vec<PointerSymbol>,
pub sense_cnt: u32,
pub tagsense_cnt: u32,
pub synset_offsets: Vec<u64>,
}Fields§
§lemma: String§pos: SynsetType§synset_cnt: u32§ptr_symbols: Vec<PointerSymbol>§sense_cnt: u32§synset_offsets: Vec<u64>Trait Implementations§
Source§impl Clone for IndexEntry
impl Clone for IndexEntry
Source§fn clone(&self) -> IndexEntry
fn clone(&self) -> IndexEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IndexEntry
impl Debug for IndexEntry
Source§impl<'de> Deserialize<'de> for IndexEntry
impl<'de> Deserialize<'de> for IndexEntry
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 IndexEntry
Source§impl Ord for IndexEntry
impl Ord for IndexEntry
Source§fn cmp(&self, other: &IndexEntry) -> Ordering
fn cmp(&self, other: &IndexEntry) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IndexEntry
impl PartialEq for IndexEntry
Source§fn eq(&self, other: &IndexEntry) -> bool
fn eq(&self, other: &IndexEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for IndexEntry
impl PartialOrd for IndexEntry
Source§impl Serialize for IndexEntry
impl Serialize for IndexEntry
impl StructuralPartialEq for IndexEntry
Auto Trait Implementations§
impl Freeze for IndexEntry
impl RefUnwindSafe for IndexEntry
impl Send for IndexEntry
impl Sync for IndexEntry
impl Unpin for IndexEntry
impl UnsafeUnpin for IndexEntry
impl UnwindSafe for IndexEntry
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