[][src]Struct sandboxfs::Mapping

pub struct Mapping { /* fields omitted */ }

Mapping describes how an individual path within the sandbox is connected to an external path in the underlying file system.

Methods

impl Mapping[src]

pub fn from_parts(
    path: PathBuf,
    underlying_path: PathBuf,
    writable: bool
) -> Result<Self, MappingError>
[src]

Creates a new mapping from the individual components.

path is the inside the sandbox's mount point where the underlying_path is exposed. Both must be absolute paths. path must also not contain dot-dot components, though it may contain dot components and repeated path separators.

Trait Implementations

impl Eq for Mapping[src]

impl PartialEq<Mapping> for Mapping[src]

impl Debug for Mapping[src]

impl Display for Mapping[src]

Auto Trait Implementations

impl Send for Mapping

impl Sync for Mapping

Blanket Implementations

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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