pub struct ImpactStats {
pub total_entities: usize,
pub directly_impacted: usize,
pub indirectly_impacted: usize,
pub not_impacted: usize,
pub max_depth_reached: usize,
}Fields§
§total_entities: usize§directly_impacted: usize§indirectly_impacted: usize§not_impacted: usize§max_depth_reached: usizeTrait Implementations§
Source§impl Clone for ImpactStats
impl Clone for ImpactStats
Source§fn clone(&self) -> ImpactStats
fn clone(&self) -> ImpactStats
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 ImpactStats
impl Debug for ImpactStats
Source§impl<'de> Deserialize<'de> for ImpactStats
impl<'de> Deserialize<'de> for ImpactStats
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
Auto Trait Implementations§
impl Freeze for ImpactStats
impl RefUnwindSafe for ImpactStats
impl Send for ImpactStats
impl Sync for ImpactStats
impl Unpin for ImpactStats
impl UnsafeUnpin for ImpactStats
impl UnwindSafe for ImpactStats
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