pub struct EnvironmentImage {
pub description: Option<String>,
pub name: Option<String>,
pub versions: Option<Vec<String>>,
}
Expand description
Information about a Docker image that is managed by AWS CodeBuild.
Fields§
§description: Option<String>
The description of the Docker image.
name: Option<String>
The name of the Docker image.
versions: Option<Vec<String>>
A list of environment image versions.
Trait Implementations§
Source§impl Clone for EnvironmentImage
impl Clone for EnvironmentImage
Source§fn clone(&self) -> EnvironmentImage
fn clone(&self) -> EnvironmentImage
Returns a duplicate 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 EnvironmentImage
impl Debug for EnvironmentImage
Source§impl Default for EnvironmentImage
impl Default for EnvironmentImage
Source§fn default() -> EnvironmentImage
fn default() -> EnvironmentImage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EnvironmentImage
impl<'de> Deserialize<'de> for EnvironmentImage
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 EnvironmentImage
impl PartialEq for EnvironmentImage
impl StructuralPartialEq for EnvironmentImage
Auto Trait Implementations§
impl Freeze for EnvironmentImage
impl RefUnwindSafe for EnvironmentImage
impl Send for EnvironmentImage
impl Sync for EnvironmentImage
impl Unpin for EnvironmentImage
impl UnwindSafe for EnvironmentImage
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