pub struct AgentArtifactDefinition {
pub alias: Option<String>,
pub artifact_type: Option<ArtifactType>,
pub details: Option<String>,
pub name: Option<String>,
pub version: Option<String>,
}Expand description
Fields§
§alias: Option<String>Gets or sets the artifact definition alias.
artifact_type: Option<ArtifactType>Gets or sets the artifact type.
details: Option<String>Gets or sets the artifact definition details.
name: Option<String>Gets or sets the name of artifact definition.
version: Option<String>Gets or sets the version of artifact definition.
Implementations§
Trait Implementations§
source§impl Clone for AgentArtifactDefinition
impl Clone for AgentArtifactDefinition
source§fn clone(&self) -> AgentArtifactDefinition
fn clone(&self) -> AgentArtifactDefinition
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 AgentArtifactDefinition
impl Debug for AgentArtifactDefinition
source§impl Default for AgentArtifactDefinition
impl Default for AgentArtifactDefinition
source§fn default() -> AgentArtifactDefinition
fn default() -> AgentArtifactDefinition
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AgentArtifactDefinition
impl<'de> Deserialize<'de> for AgentArtifactDefinition
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<AgentArtifactDefinition> for AgentArtifactDefinition
impl PartialEq<AgentArtifactDefinition> for AgentArtifactDefinition
source§fn eq(&self, other: &AgentArtifactDefinition) -> bool
fn eq(&self, other: &AgentArtifactDefinition) -> bool
This method tests for
self and other values to be equal, and is used
by ==.