pub struct AstMatch {
pub chunk_id: u64,
pub score: f32,
}Expand description
Result of an AST pattern match.
Fields§
§chunk_id: u64The chunk ID that matched.
score: f32Match score (0.0 to 1.0).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AstMatch
impl RefUnwindSafe for AstMatch
impl Send for AstMatch
impl Sync for AstMatch
impl Unpin for AstMatch
impl UnsafeUnpin for AstMatch
impl UnwindSafe for AstMatch
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