pub struct SymlinkEntry {
pub logical: PathBuf,
pub target: PathBuf,
}Expand description
A symlink observed while resolving a logical path.
Fields§
§logical: PathBufLogical location of the link itself, e.g. /lib/x86_64-linux-gnu/libfoo.so.1.
target: PathBufRaw link target, verbatim, so the relationship is preserved on output.
Trait Implementations§
Source§impl Clone for SymlinkEntry
impl Clone for SymlinkEntry
Source§fn clone(&self) -> SymlinkEntry
fn clone(&self) -> SymlinkEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SymlinkEntry
impl Debug for SymlinkEntry
impl Eq for SymlinkEntry
Source§impl PartialEq for SymlinkEntry
impl PartialEq for SymlinkEntry
impl StructuralPartialEq for SymlinkEntry
Auto Trait Implementations§
impl Freeze for SymlinkEntry
impl RefUnwindSafe for SymlinkEntry
impl Send for SymlinkEntry
impl Sync for SymlinkEntry
impl Unpin for SymlinkEntry
impl UnsafeUnpin for SymlinkEntry
impl UnwindSafe for SymlinkEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.