[][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 Debug for Mapping[src]

impl Display for Mapping[src]

impl Eq for Mapping[src]

impl PartialEq<Mapping> for Mapping[src]

impl StructuralEq for Mapping[src]

impl StructuralPartialEq for Mapping[src]

Auto Trait Implementations

impl RefUnwindSafe for Mapping

impl Send for Mapping

impl Sync for Mapping

impl Unpin for Mapping

impl UnwindSafe for Mapping

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[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.