pub struct IdentityGraphCoverage {Show 14 fields
pub rows_total: usize,
pub rows_matching: usize,
pub rows_emitted: usize,
pub nodes_total: usize,
pub nodes_emitted: usize,
pub edges_total: usize,
pub edges_matching: usize,
pub edges_emitted: usize,
pub ports_in_total: usize,
pub ports_in_matching: usize,
pub ports_in_emitted: usize,
pub ports_out_total: usize,
pub ports_out_matching: usize,
pub ports_out_emitted: usize,
}Fields§
§rows_total: usize§rows_matching: usize§rows_emitted: usize§nodes_total: usize§nodes_emitted: usize§edges_total: usize§edges_matching: usize§edges_emitted: usize§ports_in_total: usize§ports_in_matching: usize§ports_in_emitted: usize§ports_out_total: usize§ports_out_matching: usize§ports_out_emitted: usizeTrait Implementations§
Source§impl Clone for IdentityGraphCoverage
impl Clone for IdentityGraphCoverage
Source§fn clone(&self) -> IdentityGraphCoverage
fn clone(&self) -> IdentityGraphCoverage
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 moreimpl Copy for IdentityGraphCoverage
Source§impl Debug for IdentityGraphCoverage
impl Debug for IdentityGraphCoverage
Source§impl Default for IdentityGraphCoverage
impl Default for IdentityGraphCoverage
Source§fn default() -> IdentityGraphCoverage
fn default() -> IdentityGraphCoverage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IdentityGraphCoverage
impl<'de> Deserialize<'de> for IdentityGraphCoverage
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 IdentityGraphCoverage
Source§impl PartialEq for IdentityGraphCoverage
impl PartialEq for IdentityGraphCoverage
Source§impl Serialize for IdentityGraphCoverage
impl Serialize for IdentityGraphCoverage
impl StructuralPartialEq for IdentityGraphCoverage
Auto Trait Implementations§
impl Freeze for IdentityGraphCoverage
impl RefUnwindSafe for IdentityGraphCoverage
impl Send for IdentityGraphCoverage
impl Sync for IdentityGraphCoverage
impl Unpin for IdentityGraphCoverage
impl UnsafeUnpin for IdentityGraphCoverage
impl UnwindSafe for IdentityGraphCoverage
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