[][src]Struct aws_build_lib::Builder

pub struct Builder {
    pub rust_version: String,
    pub mode: BuildMode,
    pub bin: Option<String>,
    pub strip: bool,
    pub container_cmd: PathBuf,
    pub project: PathBuf,
}

Options for running the build.

Fields

rust_version: String

Rust version to install. Can be anything rustup understands as a valid version, e.g. "stable" or "1.45.2".

mode: BuildMode

Whether to build for Amazon Linux 2 or AWS Lambda.

bin: Option<String>

Name of the binary target to build. Can be None if the project only has one binary target.

strip: bool

Strip the binary.

container_cmd: PathBuf

Container command. Defaults to "docker", but "podman" should work as well.

project: PathBuf

Path of the project to build.

Implementations

impl Builder[src]

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

Run the build in a container.

This will produce either a standalone executable (for Amazon Linux 2) or a zip file (for AWS Lambda). The file is given a unique name for convenient uploading to S3, and a short symlink to the file is also created (target/latest-al2 or target/latest-lambda).

The full path of the output file (not the symlink) is returned.

Trait Implementations

impl Clone for Builder[src]

impl Debug for Builder[src]

impl Default for Builder[src]

impl Eq for Builder[src]

impl PartialEq<Builder> for Builder[src]

impl StructuralEq for Builder[src]

impl StructuralPartialEq for Builder[src]

Auto Trait Implementations

impl RefUnwindSafe for Builder

impl Send for Builder

impl Sync for Builder

impl Unpin for Builder

impl UnwindSafe for Builder

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.

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