pub struct Synset<'a> {
pub id: SynsetId,
pub lex_filenum: u8,
pub synset_type: SynsetType,
pub words: Vec<Lemma<'a>>,
pub pointers: Vec<Pointer<'a>>,
pub frames: &'a [Frame],
pub gloss: Gloss<'a>,
}Expand description
Complete synset record with all semantic fields preserved.
Fields§
§id: SynsetId§lex_filenum: u8§synset_type: SynsetType§words: Vec<Lemma<'a>>§pointers: Vec<Pointer<'a>>§frames: &'a [Frame]§gloss: Gloss<'a>Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Synset<'a>
impl<'a> RefUnwindSafe for Synset<'a>
impl<'a> Send for Synset<'a>
impl<'a> Sync for Synset<'a>
impl<'a> Unpin for Synset<'a>
impl<'a> UnwindSafe for Synset<'a>
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