[][src]Struct lambda_build::LambdaBuilder

pub struct LambdaBuilder {
    pub repo: String,
    pub rev: String,
    pub container_cmd: String,
    pub project: PathBuf,
}

Options for running the build.

Fields

repo: String

The lambda-rust repo URL.

rev: String

Branch/tag/commit from which to build.

container_cmd: String

Container command.

project: PathBuf

Path of the project to build.

Implementations

impl LambdaBuilder[src]

pub fn run(&self) -> Result<Vec<PathBuf>, Error>[src]

Trait Implementations

impl Clone for LambdaBuilder[src]

impl Debug for LambdaBuilder[src]

impl Default for LambdaBuilder[src]

impl Eq for LambdaBuilder[src]

impl PartialEq<LambdaBuilder> for LambdaBuilder[src]

impl StructuralEq for LambdaBuilder[src]

impl StructuralPartialEq for LambdaBuilder[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, 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.