[][src]Struct sccache::dist::pkg::ToolchainPackageBuilder

pub struct ToolchainPackageBuilder { /* fields omitted */ }

Implementations

impl ToolchainPackageBuilder[src]

pub fn new() -> Self[src]

pub fn add_common(&mut self) -> Result<()>[src]

pub fn add_executable_and_deps(&mut self, executable: PathBuf) -> Result<()>[src]

pub fn add_dir(&mut self, dir_path: PathBuf) -> Result<()>[src]

pub fn add_file(&mut self, file_path: PathBuf) -> Result<()>[src]

pub fn add_dir_contents(&mut self, dir_path: &Path) -> Result<()>[src]

pub fn into_compressed_tar<W: Write>(self, writer: W) -> Result<()>[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> 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.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,