pub struct RelativePos { /* private fields */ }
Expand description
Relative head position by part-of-speech.
The position of the head relative to the dependent token, in terms of part-of-speech tags. For example, a position of -2 with the pos noun means that the head is the second preceding noun.
Implementations§
Trait Implementations§
Source§impl Clone for RelativePos
impl Clone for RelativePos
Source§fn clone(&self) -> RelativePos
fn clone(&self) -> RelativePos
Returns a copy of the value. Read more
1.0.0 · 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 RelativePos
impl Debug for RelativePos
Source§impl<'de> Deserialize<'de> for RelativePos
impl<'de> Deserialize<'de> for RelativePos
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 Hash for RelativePos
impl Hash for RelativePos
Source§impl PartialEq for RelativePos
impl PartialEq for RelativePos
Source§impl Serialize for RelativePos
impl Serialize for RelativePos
impl Eq for RelativePos
impl StructuralPartialEq for RelativePos
Auto Trait Implementations§
impl Freeze for RelativePos
impl RefUnwindSafe for RelativePos
impl Send for RelativePos
impl Sync for RelativePos
impl Unpin for RelativePos
impl UnwindSafe for RelativePos
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more