Struct azure_devops_rust_api::test::models::CodeCoverageData
source · pub struct CodeCoverageData {
pub build_flavor: Option<String>,
pub build_platform: Option<String>,
pub coverage_stats: Vec<CodeCoverageStatistics>,
}Expand description
Represents the build configuration (platform, flavor) and coverage data for the build
Fields§
§build_flavor: Option<String>Flavor of build for which data is retrieved/published
build_platform: Option<String>Platform of build for which data is retrieved/published
coverage_stats: Vec<CodeCoverageStatistics>List of coverage data for the build
Implementations§
Trait Implementations§
source§impl Clone for CodeCoverageData
impl Clone for CodeCoverageData
source§fn clone(&self) -> CodeCoverageData
fn clone(&self) -> CodeCoverageData
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 CodeCoverageData
impl Debug for CodeCoverageData
source§impl Default for CodeCoverageData
impl Default for CodeCoverageData
source§fn default() -> CodeCoverageData
fn default() -> CodeCoverageData
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CodeCoverageData
impl<'de> Deserialize<'de> for CodeCoverageData
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<CodeCoverageData> for CodeCoverageData
impl PartialEq<CodeCoverageData> for CodeCoverageData
source§fn eq(&self, other: &CodeCoverageData) -> bool
fn eq(&self, other: &CodeCoverageData) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for CodeCoverageData
impl Serialize for CodeCoverageData
impl StructuralPartialEq for CodeCoverageData
Auto Trait Implementations§
impl RefUnwindSafe for CodeCoverageData
impl Send for CodeCoverageData
impl Sync for CodeCoverageData
impl Unpin for CodeCoverageData
impl UnwindSafe for CodeCoverageData
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