pub struct FileMatch {
pub score: u32,
pub path: String,
pub match_type: MatchType,
pub indices: Option<Vec<u32>>,
}Fields§
§score: u32§path: String§match_type: MatchType§indices: Option<Vec<u32>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for FileMatch
impl<'de> Deserialize<'de> for FileMatch
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FileMatch
impl RefUnwindSafe for FileMatch
impl Send for FileMatch
impl Sync for FileMatch
impl Unpin for FileMatch
impl UnsafeUnpin for FileMatch
impl UnwindSafe for FileMatch
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