pub struct Resolved {
pub logical: PathBuf,
pub host: PathBuf,
pub links: Vec<SymlinkEntry>,
pub kind: EntryKind,
}Expand description
A logical path resolved to a real file inside the source root.
Fields§
§logical: PathBufLogical path after following symlinks, e.g. /usr/lib/.../libfoo.so.1.4.2.
host: PathBufHost path of that file (source root prepended).
links: Vec<SymlinkEntry>Symlinks traversed on the way, in traversal order.
kind: EntryKindTrait Implementations§
Auto Trait Implementations§
impl Freeze for Resolved
impl RefUnwindSafe for Resolved
impl Send for Resolved
impl Sync for Resolved
impl Unpin for Resolved
impl UnsafeUnpin for Resolved
impl UnwindSafe for Resolved
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