#[non_exhaustive]pub struct CsmCoverageAnalysis {
pub configured_resources_count: Option<i64>,
pub coverage: Option<f64>,
pub partially_configured_resources_count: Option<i64>,
pub total_resources_count: Option<i64>,
pub additional_properties: BTreeMap<String, Value>,
/* private fields */
}
Expand description
CSM Coverage Analysis.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.configured_resources_count: Option<i64>
The number of fully configured resources.
coverage: Option<f64>
The coverage percentage.
partially_configured_resources_count: Option<i64>
The number of partially configured resources.
total_resources_count: Option<i64>
The total number of resources.
additional_properties: BTreeMap<String, Value>
Implementations§
Source§impl CsmCoverageAnalysis
impl CsmCoverageAnalysis
pub fn new() -> CsmCoverageAnalysis
pub fn configured_resources_count(self, value: i64) -> Self
pub fn coverage(self, value: f64) -> Self
pub fn partially_configured_resources_count(self, value: i64) -> Self
pub fn total_resources_count(self, value: i64) -> Self
pub fn additional_properties(self, value: BTreeMap<String, Value>) -> Self
Trait Implementations§
Source§impl Clone for CsmCoverageAnalysis
impl Clone for CsmCoverageAnalysis
Source§fn clone(&self) -> CsmCoverageAnalysis
fn clone(&self) -> CsmCoverageAnalysis
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 CsmCoverageAnalysis
impl Debug for CsmCoverageAnalysis
Source§impl Default for CsmCoverageAnalysis
impl Default for CsmCoverageAnalysis
Source§impl<'de> Deserialize<'de> for CsmCoverageAnalysis
impl<'de> Deserialize<'de> for CsmCoverageAnalysis
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 CsmCoverageAnalysis
impl PartialEq for CsmCoverageAnalysis
Source§impl Serialize for CsmCoverageAnalysis
impl Serialize for CsmCoverageAnalysis
impl StructuralPartialEq for CsmCoverageAnalysis
Auto Trait Implementations§
impl Freeze for CsmCoverageAnalysis
impl RefUnwindSafe for CsmCoverageAnalysis
impl Send for CsmCoverageAnalysis
impl Sync for CsmCoverageAnalysis
impl Unpin for CsmCoverageAnalysis
impl UnwindSafe for CsmCoverageAnalysis
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