Struct aws_sdk_codebuild::model::EnvironmentLanguage
source · [−]#[non_exhaustive]pub struct EnvironmentLanguage {
pub language: Option<LanguageType>,
pub images: Option<Vec<EnvironmentImage>>,
}
Expand description
A set of Docker images that are related by programming language and are managed by CodeBuild.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.language: Option<LanguageType>
The programming language for the Docker images.
images: Option<Vec<EnvironmentImage>>
The list of Docker images that are related by the specified programming language.
Implementations
The programming language for the Docker images.
Creates a new builder-style object to manufacture EnvironmentLanguage
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for EnvironmentLanguage
impl Send for EnvironmentLanguage
impl Sync for EnvironmentLanguage
impl Unpin for EnvironmentLanguage
impl UnwindSafe for EnvironmentLanguage
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more