pub struct ContextMatch {
pub search_term: String,
pub reason: String,
pub score: f64,
pub node: Node,
pub code: Option<String>,
}Fields§
§search_term: String§reason: String§score: f64§node: Node§code: Option<String>Trait Implementations§
Source§impl Clone for ContextMatch
impl Clone for ContextMatch
Source§fn clone(&self) -> ContextMatch
fn clone(&self) -> ContextMatch
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ContextMatch
impl Debug for ContextMatch
Auto Trait Implementations§
impl Freeze for ContextMatch
impl RefUnwindSafe for ContextMatch
impl Send for ContextMatch
impl Sync for ContextMatch
impl Unpin for ContextMatch
impl UnsafeUnpin for ContextMatch
impl UnwindSafe for ContextMatch
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