pub struct TargetEntry {
pub name: String,
pub category: TargetCategory,
pub path: Option<String>,
pub delta_count: usize,
pub tags: Vec<String>,
}Expand description
A single entry in the target search index.
Fields§
§name: String§category: TargetCategory§path: Option<String>Optional filesystem path to the .target file.
delta_count: usizeAuto Trait Implementations§
impl Freeze for TargetEntry
impl RefUnwindSafe for TargetEntry
impl Send for TargetEntry
impl Sync for TargetEntry
impl Unpin for TargetEntry
impl UnsafeUnpin for TargetEntry
impl UnwindSafe for TargetEntry
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