Struct azure_devops_rust_api::release::models::ArtifactVersion
source · pub struct ArtifactVersion {
pub alias: Option<String>,
pub default_version: Option<BuildVersion>,
pub error_message: Option<String>,
pub versions: Vec<BuildVersion>,
}
Expand description
Fields§
§alias: Option<String>
Gets or sets the alias of artifact.
default_version: Option<BuildVersion>
§error_message: Option<String>
Gets or sets the error message encountered during querying of versions for artifact.
versions: Vec<BuildVersion>
Gets or sets the list of build versions of artifact.
Implementations§
Trait Implementations§
source§impl Clone for ArtifactVersion
impl Clone for ArtifactVersion
source§fn clone(&self) -> ArtifactVersion
fn clone(&self) -> ArtifactVersion
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 ArtifactVersion
impl Debug for ArtifactVersion
source§impl Default for ArtifactVersion
impl Default for ArtifactVersion
source§fn default() -> ArtifactVersion
fn default() -> ArtifactVersion
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ArtifactVersion
impl<'de> Deserialize<'de> for ArtifactVersion
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 ArtifactVersion
impl PartialEq for ArtifactVersion
source§fn eq(&self, other: &ArtifactVersion) -> bool
fn eq(&self, other: &ArtifactVersion) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ArtifactVersion
impl Serialize for ArtifactVersion
impl StructuralPartialEq for ArtifactVersion
Auto Trait Implementations§
impl Freeze for ArtifactVersion
impl RefUnwindSafe for ArtifactVersion
impl Send for ArtifactVersion
impl Sync for ArtifactVersion
impl Unpin for ArtifactVersion
impl UnwindSafe for ArtifactVersion
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