Struct monitor_types::DockerBuildArgs
source · pub struct DockerBuildArgs {
pub build_path: String,
pub dockerfile_path: Option<String>,
pub build_args: Vec<EnvironmentVar>,
}Fields§
§build_path: String§dockerfile_path: Option<String>§build_args: Vec<EnvironmentVar>Trait Implementations§
source§impl Clone for DockerBuildArgs
impl Clone for DockerBuildArgs
source§fn clone(&self) -> DockerBuildArgs
fn clone(&self) -> DockerBuildArgs
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 DockerBuildArgs
impl Debug for DockerBuildArgs
source§impl Default for DockerBuildArgs
impl Default for DockerBuildArgs
source§fn default() -> DockerBuildArgs
fn default() -> DockerBuildArgs
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DockerBuildArgs
impl<'de> Deserialize<'de> for DockerBuildArgs
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 Diff for DockerBuildArgs
impl Diff for DockerBuildArgs
§type Repr = DockerBuildArgsDiff
type Repr = DockerBuildArgsDiff
The type associated with the structs’ difference
source§fn diff_custom<D>(&self, other: &Self, visitor: &D) -> <D as Differ<Self>>::Reprwhere
D: Differ<Self>,
fn diff_custom<D>(&self, other: &Self, visitor: &D) -> <D as Differ<Self>>::Reprwhere
D: Differ<Self>,
Produces a diff between two structs, using an external diffing implementation
source§fn apply_custom<D>(&mut self, diff: &<D as Differ<Self>>::Repr, visitor: &D)where
D: Differ<Self>,
fn apply_custom<D>(&mut self, diff: &<D as Differ<Self>>::Repr, visitor: &D)where
D: Differ<Self>,
Applies the diff directly to the struct, using an external diffing implementation
source§impl PartialEq<DockerBuildArgs> for DockerBuildArgs
impl PartialEq<DockerBuildArgs> for DockerBuildArgs
source§fn eq(&self, other: &DockerBuildArgs) -> bool
fn eq(&self, other: &DockerBuildArgs) -> bool
This method tests for
self and other values to be equal, and is used
by ==.