pub struct SnsProposalsRefreshReport {Show 19 fields
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 id: usize,
pub name: String,
pub root_canister_id: String,
pub governance_canister_id: String,
pub cache_path: String,
pub refresh_lock_path: String,
pub refresh_attempt_path: String,
pub page_size: u32,
pub page_count: u32,
pub proposal_count: usize,
pub complete: bool,
pub replaced_existing_cache: bool,
pub wrote_cache: bool,
}Expand description
SnsProposalsRefreshReport
Serializable report returned after a complete SNS proposal snapshot refresh.
Fields§
§schema_version: u32§network: String§sns_wasm_canister_id: String§fetched_at: String§source_endpoint: String§fetched_by: String§id: usize§name: String§root_canister_id: String§governance_canister_id: String§cache_path: String§refresh_lock_path: String§refresh_attempt_path: String§page_size: u32§page_count: u32§proposal_count: usize§complete: bool§replaced_existing_cache: bool§wrote_cache: boolTrait Implementations§
Source§impl Clone for SnsProposalsRefreshReport
impl Clone for SnsProposalsRefreshReport
Source§fn clone(&self) -> SnsProposalsRefreshReport
fn clone(&self) -> SnsProposalsRefreshReport
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 SnsProposalsRefreshReport
impl Debug for SnsProposalsRefreshReport
impl Eq for SnsProposalsRefreshReport
Source§impl PartialEq for SnsProposalsRefreshReport
impl PartialEq for SnsProposalsRefreshReport
Source§fn eq(&self, other: &SnsProposalsRefreshReport) -> bool
fn eq(&self, other: &SnsProposalsRefreshReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SnsProposalsRefreshReport
Auto Trait Implementations§
impl Freeze for SnsProposalsRefreshReport
impl RefUnwindSafe for SnsProposalsRefreshReport
impl Send for SnsProposalsRefreshReport
impl Sync for SnsProposalsRefreshReport
impl Unpin for SnsProposalsRefreshReport
impl UnsafeUnpin for SnsProposalsRefreshReport
impl UnwindSafe for SnsProposalsRefreshReport
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.