pub struct ProjectStats {Show 19 fields
pub findings: usize,
pub links: usize,
pub replicated: usize,
pub unreplicated: usize,
pub avg_confidence: f64,
pub gaps: usize,
pub negative_space: usize,
pub contested: usize,
pub categories: HashMap<String, usize>,
pub link_types: HashMap<String, usize>,
pub human_reviewed: usize,
pub review_event_count: usize,
pub confidence_update_count: usize,
pub event_count: usize,
pub source_count: usize,
pub evidence_atom_count: usize,
pub condition_record_count: usize,
pub proposal_count: usize,
pub confidence_distribution: ConfidenceDistribution,
}Fields§
§findings: usize§links: usize§replicated: usize§unreplicated: usize§avg_confidence: f64§gaps: usize§negative_space: usize§contested: usize§categories: HashMap<String, usize>§link_types: HashMap<String, usize>§human_reviewed: usize§review_event_count: usizeNumber of review events in this frontier.
confidence_update_count: usizeNumber of confidence updates in this frontier.
event_count: usizeNumber of canonical state events in this frontier.
source_count: usizeNumber of source records in the frontier source registry.
evidence_atom_count: usizeNumber of materialized evidence atoms in the frontier.
condition_record_count: usizeNumber of materialized condition records in the frontier.
proposal_count: usizeNumber of persisted proposals in the frontier.
confidence_distribution: ConfidenceDistributionTrait Implementations§
Source§impl Debug for ProjectStats
impl Debug for ProjectStats
Source§impl Default for ProjectStats
impl Default for ProjectStats
Source§fn default() -> ProjectStats
fn default() -> ProjectStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectStats
impl<'de> Deserialize<'de> for ProjectStats
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 ProjectStats
impl RefUnwindSafe for ProjectStats
impl Send for ProjectStats
impl Sync for ProjectStats
impl Unpin for ProjectStats
impl UnsafeUnpin for ProjectStats
impl UnwindSafe for ProjectStats
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