pub struct PathMatchScore {
pub filename_match_count: usize,
pub filename_contiguous_match_count: usize,
pub contiguous_match_count: usize,
pub filename_first_match: usize,
pub path_first_match: usize,
pub match_span: usize,
pub gap_count: usize,
pub depth: usize,
pub len: usize,
}Fields§
§filename_match_count: usize§filename_contiguous_match_count: usize§contiguous_match_count: usize§filename_first_match: usize§path_first_match: usize§match_span: usize§gap_count: usize§depth: usize§len: usizeTrait Implementations§
Source§impl Clone for PathMatchScore
impl Clone for PathMatchScore
Source§fn clone(&self) -> PathMatchScore
fn clone(&self) -> PathMatchScore
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 moreSource§impl Debug for PathMatchScore
impl Debug for PathMatchScore
Source§impl PartialEq for PathMatchScore
impl PartialEq for PathMatchScore
impl Copy for PathMatchScore
impl Eq for PathMatchScore
impl StructuralPartialEq for PathMatchScore
Auto Trait Implementations§
impl Freeze for PathMatchScore
impl RefUnwindSafe for PathMatchScore
impl Send for PathMatchScore
impl Sync for PathMatchScore
impl Unpin for PathMatchScore
impl UnsafeUnpin for PathMatchScore
impl UnwindSafe for PathMatchScore
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