ic-query 0.2.25

Internet Computer query CLI for NNS, SNS, and related public network metadata
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Module: sns::report::model::reports::neurons
//!
//! Responsibility: group SNS neuron report DTOs.
//! Does not own: live neuron fetches, cache storage, sorting, or rendering.
//! Boundary: re-exports serializable neuron report models.

mod cache;
mod refresh;
mod report;
mod row;

pub type SnsNeuronsRefreshAttemptStatus = super::attempt::SnsRefreshAttemptStatus;
pub use cache::{SnsNeuronsCacheListReport, SnsNeuronsCacheStatusReport, SnsNeuronsCacheSummary};
pub use refresh::SnsNeuronsRefreshReport;
pub use report::SnsNeuronsReport;
pub use row::SnsNeuronRow;