pub struct Synset {
pub offset: u64,
pub lex_filenum: u8,
pub ss_type: SynsetType,
pub words: Vec<Word>,
pub pointers: Vec<Pointer>,
pub frames: Vec<Frame>,
pub gloss: String,
}Fields§
§offset: u64§lex_filenum: u8§ss_type: SynsetType§words: Vec<Word>§pointers: Vec<Pointer>§frames: Vec<Frame>§gloss: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Synset
impl<'de> Deserialize<'de> for Synset
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 Synset
Source§impl Ord for Synset
impl Ord for Synset
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 PartialOrd for Synset
impl PartialOrd for Synset
impl StructuralPartialEq for Synset
Auto Trait Implementations§
impl Freeze for Synset
impl RefUnwindSafe for Synset
impl Send for Synset
impl Sync for Synset
impl Unpin for Synset
impl UnsafeUnpin for Synset
impl UnwindSafe for Synset
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