pub struct MetricDeltas {
pub total_issues: i64,
pub open_issues: i64,
pub closed_issues: i64,
pub blocked_issues: i64,
pub total_edges: i64,
pub cycle_count: i64,
pub component_count: i64,
pub avg_pagerank: f64,
pub avg_betweenness: f64,
}Fields§
§total_issues: i64§open_issues: i64§closed_issues: i64§blocked_issues: i64§total_edges: i64§cycle_count: i64§component_count: i64§avg_pagerank: f64§avg_betweenness: f64Trait Implementations§
Source§impl Clone for MetricDeltas
impl Clone for MetricDeltas
Source§fn clone(&self) -> MetricDeltas
fn clone(&self) -> MetricDeltas
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 MetricDeltas
impl Debug for MetricDeltas
Source§impl Default for MetricDeltas
impl Default for MetricDeltas
Source§fn default() -> MetricDeltas
fn default() -> MetricDeltas
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MetricDeltas
impl RefUnwindSafe for MetricDeltas
impl Send for MetricDeltas
impl Sync for MetricDeltas
impl Unpin for MetricDeltas
impl UnsafeUnpin for MetricDeltas
impl UnwindSafe for MetricDeltas
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