pub struct SnsListReport {
pub schema_version: u32,
pub network: String,
pub sns_wasm_canister_id: String,
pub fetched_at: String,
pub source_endpoint: String,
pub fetched_by: String,
pub verbose: bool,
pub sort: String,
pub sns_count: usize,
pub metadata_error_count: usize,
pub sns_instances: Vec<SnsListRow>,
}Expand description
SnsListReport
Serializable report for deployed SNS listings.
Fields§
§schema_version: u32§network: String§sns_wasm_canister_id: String§fetched_at: String§source_endpoint: String§fetched_by: String§verbose: bool§sort: String§sns_count: usize§metadata_error_count: usize§sns_instances: Vec<SnsListRow>Trait Implementations§
Source§impl Clone for SnsListReport
impl Clone for SnsListReport
Source§fn clone(&self) -> SnsListReport
fn clone(&self) -> SnsListReport
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 SnsListReport
impl Debug for SnsListReport
impl Eq for SnsListReport
Source§impl PartialEq for SnsListReport
impl PartialEq for SnsListReport
Source§fn eq(&self, other: &SnsListReport) -> bool
fn eq(&self, other: &SnsListReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SnsListReport
impl Serialize for SnsListReport
impl StructuralPartialEq for SnsListReport
Auto Trait Implementations§
impl Freeze for SnsListReport
impl RefUnwindSafe for SnsListReport
impl Send for SnsListReport
impl Sync for SnsListReport
impl Unpin for SnsListReport
impl UnsafeUnpin for SnsListReport
impl UnwindSafe for SnsListReport
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