pub struct ExtractionPattern {
pub name: String,
pub subject_token: String,
pub predicate_words: Vec<String>,
pub object_token: String,
}Expand description
A declarative extraction rule
Fields§
§name: StringHuman-readable name for the pattern (e.g. "is_a")
subject_token: StringPlaceholder / label for the subject token (informational)
predicate_words: Vec<String>Ordered trigger words that together signal the predicate
object_token: StringPlaceholder / label for the object token (informational)
Implementations§
Trait Implementations§
Source§impl Clone for ExtractionPattern
impl Clone for ExtractionPattern
Source§fn clone(&self) -> ExtractionPattern
fn clone(&self) -> ExtractionPattern
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ExtractionPattern
impl RefUnwindSafe for ExtractionPattern
impl Send for ExtractionPattern
impl Sync for ExtractionPattern
impl Unpin for ExtractionPattern
impl UnsafeUnpin for ExtractionPattern
impl UnwindSafe for ExtractionPattern
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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