pub struct LinkRecord {
pub name: String,
pub target: BoxPath,
pub attrs: AttrMap,
}Fields§
§name: String§target: BoxPathThe target path of the symbolic link, which is the place the link points to. A path is always relative (no leading separator),
always delimited by a UNIT SEPARATOR U+001F ("\x1f"), and may not contain
any . or .. path chunks.
attrs: AttrMapOptional attributes for the given paths, such as Windows or Unix ACLs, last accessed time, etc.
Implementations§
Trait Implementations§
Source§impl Clone for LinkRecord
impl Clone for LinkRecord
Source§fn clone(&self) -> LinkRecord
fn clone(&self) -> LinkRecord
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LinkRecord
impl RefUnwindSafe for LinkRecord
impl Send for LinkRecord
impl Sync for LinkRecord
impl Unpin for LinkRecord
impl UnwindSafe for LinkRecord
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