pub struct SynsetRelationView<'a> {
pub parent: Option<SynsetView<'a>>,
pub child: Option<SynsetView<'a>>,
pub relation: Option<RelationTypeView<'a>>,
pub valid: bool,
pub owner: &'a str,
}Expand description
Represents a readonly view of a synset relation.
Fields§
§parent: Option<SynsetView<'a>>§child: Option<SynsetView<'a>>§relation: Option<RelationTypeView<'a>>Type of the relation
valid: bool§owner: &'a strTrait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for SynsetRelationView<'a>
impl<'a> RefUnwindSafe for SynsetRelationView<'a>
impl<'a> Send for SynsetRelationView<'a>
impl<'a> Sync for SynsetRelationView<'a>
impl<'a> Unpin for SynsetRelationView<'a>
impl<'a> UnwindSafe for SynsetRelationView<'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