[][src]Enum buildkit_llb::prelude::LayerPath

pub enum LayerPath<'a, P: AsRef<Path>> {
    Own(OwnOutputIdx, P),
    Other(OperationOutput<'a>, P),
    Scratch(P),
}

Operand of file system operations that defines either source or destination layer and a path.

Variants

Own(OwnOutputIdx, P)

References one of the current operation outputs and a path.

Other(OperationOutput<'a>, P)

References an output of another operation and a path.

Scratch(P)

A path in an empty layer (equivalent of Dockerfile's scratch source).

Methods

impl<'a, P: AsRef<Path>> LayerPath<'a, P>[src]

pub fn into_owned(self) -> LayerPath<'a, PathBuf>[src]

Transform the layer path into owned variant (basically, with PathBuf as the path).

Trait Implementations

impl<'a, P: Debug + AsRef<Path>> Debug for LayerPath<'a, P>[src]

Auto Trait Implementations

impl<'a, P> !RefUnwindSafe for LayerPath<'a, P>

impl<'a, P> Send for LayerPath<'a, P> where
    P: Send

impl<'a, P> Sync for LayerPath<'a, P> where
    P: Sync

impl<'a, P> Unpin for LayerPath<'a, P> where
    P: Unpin

impl<'a, P> !UnwindSafe for LayerPath<'a, P>

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> Same<T> for T

type Output = T

Should always be Self

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.