[][src]Struct buildkit_llb::ops::fs::CopyOperation

pub struct CopyOperation<From: Debug, To: Debug> { /* fields omitted */ }

Methods

impl CopyOperation<UnsetPath, UnsetPath>[src]

pub fn from<P>(
    self,
    source: LayerPath<P>
) -> CopyOperation<LayerPath<'a, PathBuf>, UnsetPath> where
    P: AsRef<Path>, 
[src]

impl<'a> CopyOperation<LayerPath<'a, PathBuf>, UnsetPath>[src]

pub fn to<P>(
    self,
    output: OutputIdx,
    destination: LayerPath<'a, P>
) -> CopyOperation<LayerPath<'a, PathBuf>, (OutputIdx, LayerPath<'a, PathBuf>)> where
    P: AsRef<Path>, 
[src]

impl<'a> CopyOperation<LayerPath<'a, PathBuf>, (OutputIdx, LayerPath<'a, PathBuf>)>[src]

impl<From, To> CopyOperation<From, To> where
    From: Debug,
    To: Debug
[src]

pub fn recursive(self, value: bool) -> Self[src]

pub fn create_path(self, value: bool) -> Self[src]

pub fn wildcard(self, value: bool) -> Self[src]

Trait Implementations

impl<From: Debug, To: Debug> Debug for CopyOperation<From, To>[src]

impl<'a> FileOperation for CopyOperation<LayerPath<'a, PathBuf>, (OutputIdx, LayerPath<'a, PathBuf>)>[src]

Auto Trait Implementations

impl<From, To> RefUnwindSafe for CopyOperation<From, To> where
    From: RefUnwindSafe,
    To: RefUnwindSafe

impl<From, To> Send for CopyOperation<From, To> where
    From: Send,
    To: Send

impl<From, To> Sync for CopyOperation<From, To> where
    From: Sync,
    To: Sync

impl<From, To> Unpin for CopyOperation<From, To> where
    From: Unpin,
    To: Unpin

impl<From, To> UnwindSafe for CopyOperation<From, To> where
    From: UnwindSafe,
    To: UnwindSafe

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.