[−][src]Struct aws_build_lib::Builder
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,