pub struct SnsProposalReport {Show 17 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 proposal_id: u64,
pub verbose: bool,
pub show_ballots: bool,
pub data_source: String,
pub cache_path: Option<String>,
pub cache_complete: Option<bool>,
pub proposal: SnsProposalRow,
}Expand description
SnsProposalReport
Serializable report for one SNS governance proposal detail lookup.
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§proposal_id: u64§verbose: bool§show_ballots: bool§data_source: String§cache_path: Option<String>§cache_complete: Option<bool>§proposal: SnsProposalRowTrait Implementations§
Source§impl Clone for SnsProposalReport
impl Clone for SnsProposalReport
Source§fn clone(&self) -> SnsProposalReport
fn clone(&self) -> SnsProposalReport
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 SnsProposalReport
impl Debug for SnsProposalReport
impl Eq for SnsProposalReport
Source§impl PartialEq for SnsProposalReport
impl PartialEq for SnsProposalReport
Source§impl Serialize for SnsProposalReport
impl Serialize for SnsProposalReport
impl StructuralPartialEq for SnsProposalReport
Auto Trait Implementations§
impl Freeze for SnsProposalReport
impl RefUnwindSafe for SnsProposalReport
impl Send for SnsProposalReport
impl Sync for SnsProposalReport
impl Unpin for SnsProposalReport
impl UnsafeUnpin for SnsProposalReport
impl UnwindSafe for SnsProposalReport
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