pub struct EnvironmentPlatform {
pub languages: Option<Vec<EnvironmentLanguage>>,
pub platform: Option<String>,
}
Expand description
A set of Docker images that are related by platform and are managed by AWS CodeBuild.
Fields§
§languages: Option<Vec<EnvironmentLanguage>>
The list of programming languages that are available for the specified platform.
platform: Option<String>
The platform's name.
Trait Implementations§
Source§impl Clone for EnvironmentPlatform
impl Clone for EnvironmentPlatform
Source§fn clone(&self) -> EnvironmentPlatform
fn clone(&self) -> EnvironmentPlatform
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EnvironmentPlatform
impl Debug for EnvironmentPlatform
Source§impl Default for EnvironmentPlatform
impl Default for EnvironmentPlatform
Source§fn default() -> EnvironmentPlatform
fn default() -> EnvironmentPlatform
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EnvironmentPlatform
impl<'de> Deserialize<'de> for EnvironmentPlatform
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EnvironmentPlatform
impl PartialEq for EnvironmentPlatform
impl StructuralPartialEq for EnvironmentPlatform
Auto Trait Implementations§
impl Freeze for EnvironmentPlatform
impl RefUnwindSafe for EnvironmentPlatform
impl Send for EnvironmentPlatform
impl Sync for EnvironmentPlatform
impl Unpin for EnvironmentPlatform
impl UnwindSafe for EnvironmentPlatform
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more