pub struct StateCascadeReport {
pub successful_targets: u64,
pub reconciliation_failures: u64,
pub unconfirmed_targets: u64,
pub omitted_targets: u64,
pub targets: Vec<StateCascadeTargetOutcome>,
}Expand description
Aggregate observations retain full counts when the bounded detail list fills.
Fields§
§successful_targets: u64§reconciliation_failures: u64§unconfirmed_targets: u64§omitted_targets: u64§targets: Vec<StateCascadeTargetOutcome>Trait Implementations§
Source§impl CandidType for StateCascadeReport
impl CandidType for StateCascadeReport
Source§impl Clone for StateCascadeReport
impl Clone for StateCascadeReport
Source§fn clone(&self) -> StateCascadeReport
fn clone(&self) -> StateCascadeReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StateCascadeReport
impl Debug for StateCascadeReport
Source§impl Default for StateCascadeReport
impl Default for StateCascadeReport
Source§fn default() -> StateCascadeReport
fn default() -> StateCascadeReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StateCascadeReport
impl<'de> Deserialize<'de> for StateCascadeReport
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
impl Eq for StateCascadeReport
Source§impl PartialEq for StateCascadeReport
impl PartialEq for StateCascadeReport
impl StructuralPartialEq for StateCascadeReport
Auto Trait Implementations§
impl Freeze for StateCascadeReport
impl RefUnwindSafe for StateCascadeReport
impl Send for StateCascadeReport
impl Sync for StateCascadeReport
impl Unpin for StateCascadeReport
impl UnsafeUnpin for StateCascadeReport
impl UnwindSafe for StateCascadeReport
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