pub struct BuildVersion {
pub commit_message: Option<String>,
pub definition_id: Option<String>,
pub definition_name: Option<String>,
pub id: Option<String>,
pub is_multi_definition_type: Option<bool>,
pub name: Option<String>,
pub source_branch: Option<String>,
pub source_pull_request_version: Option<SourcePullRequestVersion>,
pub source_repository_id: Option<String>,
pub source_repository_type: Option<String>,
pub source_version: Option<String>,
}Fields§
§commit_message: Option<String>Gets or sets the commit message for the artifact.
definition_id: Option<String>Gets or sets the definition id.
definition_name: Option<String>Gets or sets the definition name.
id: Option<String>Gets or sets the build id.
is_multi_definition_type: Option<bool>Gets or sets if the artifact supports multiple definitions.
name: Option<String>Gets or sets the build number.
source_branch: Option<String>Gets or sets the source branch for the artifact.
source_pull_request_version: Option<SourcePullRequestVersion>§source_repository_id: Option<String>Gets or sets the repository id for the artifact.
source_repository_type: Option<String>Gets or sets the repository type for the artifact.
source_version: Option<String>Gets or sets the source version for the artifact.
Implementations§
Source§impl BuildVersion
impl BuildVersion
Trait Implementations§
Source§impl Clone for BuildVersion
impl Clone for BuildVersion
Source§fn clone(&self) -> BuildVersion
fn clone(&self) -> BuildVersion
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 BuildVersion
impl Debug for BuildVersion
Source§impl Default for BuildVersion
impl Default for BuildVersion
Source§fn default() -> BuildVersion
fn default() -> BuildVersion
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BuildVersion
impl<'de> Deserialize<'de> for BuildVersion
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 BuildVersion
impl PartialEq for BuildVersion
Source§impl Serialize for BuildVersion
impl Serialize for BuildVersion
impl StructuralPartialEq for BuildVersion
Auto Trait Implementations§
impl Freeze for BuildVersion
impl RefUnwindSafe for BuildVersion
impl Send for BuildVersion
impl Sync for BuildVersion
impl Unpin for BuildVersion
impl UnwindSafe for BuildVersion
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