pub struct ExtractionIndicator {
pub pattern_name: String,
pub turn_index: usize,
pub matched_text: String,
}Expand description
An extraction-probe pattern match.
Fields§
§pattern_name: String§turn_index: usize§matched_text: StringTrait Implementations§
Source§impl Clone for ExtractionIndicator
impl Clone for ExtractionIndicator
Source§fn clone(&self) -> ExtractionIndicator
fn clone(&self) -> ExtractionIndicator
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 ExtractionIndicator
impl RefUnwindSafe for ExtractionIndicator
impl Send for ExtractionIndicator
impl Sync for ExtractionIndicator
impl Unpin for ExtractionIndicator
impl UnsafeUnpin for ExtractionIndicator
impl UnwindSafe for ExtractionIndicator
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