pub struct PackEntry {
pub relative_path: PathBuf,
pub absolute_path: PathBuf,
pub is_dir: bool,
}Expand description
A raw file entry discovered during directory walking (before rule matching).
Fields§
§relative_path: PathBufPath relative to the pack root (e.g. "vimrc", "nvim/init.lua").
absolute_path: PathBufAbsolute path to the file.
is_dir: boolWhether this entry is a directory.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PackEntry
impl RefUnwindSafe for PackEntry
impl Send for PackEntry
impl Sync for PackEntry
impl Unpin for PackEntry
impl UnsafeUnpin for PackEntry
impl UnwindSafe for PackEntry
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