Struct box_format::LinkRecord[][src]

pub struct LinkRecord {
    pub name: String,
    pub target: BoxPath,
    pub attrs: AttrMap,
}

Fields

name: Stringtarget: BoxPath

The 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: AttrMap

Optional attributes for the given paths, such as Windows or Unix ACLs, last accessed time, etc.

Implementations

impl LinkRecord[src]

pub fn attr<S: AsRef<str>>(
    &self,
    metadata: &BoxMetadata,
    key: S
) -> Option<&[u8]>
[src]

pub fn upcast(self) -> Record[src]

Trait Implementations

impl Debug for LinkRecord[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.