pub struct SnsParamsReport {
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 parameters: SnsGovernanceParameters,
}Expand description
SnsParamsReport
Serializable report for one SNS governance parameter set.
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§parameters: SnsGovernanceParametersTrait Implementations§
Source§impl Clone for SnsParamsReport
impl Clone for SnsParamsReport
Source§fn clone(&self) -> SnsParamsReport
fn clone(&self) -> SnsParamsReport
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 SnsParamsReport
impl Debug for SnsParamsReport
impl Eq for SnsParamsReport
Source§impl PartialEq for SnsParamsReport
impl PartialEq for SnsParamsReport
Source§impl Serialize for SnsParamsReport
impl Serialize for SnsParamsReport
impl StructuralPartialEq for SnsParamsReport
Auto Trait Implementations§
impl Freeze for SnsParamsReport
impl RefUnwindSafe for SnsParamsReport
impl Send for SnsParamsReport
impl Sync for SnsParamsReport
impl Unpin for SnsParamsReport
impl UnsafeUnpin for SnsParamsReport
impl UnwindSafe for SnsParamsReport
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