pub struct SnsProposalsCacheStatusReport {
pub schema_version: u32,
pub network: String,
pub cache_root: String,
pub input: String,
pub found: bool,
pub cache: Option<SnsProposalsCacheSummary>,
pub expected_cache_path: Option<String>,
pub refresh_attempt_path: Option<String>,
pub latest_attempt: Option<SnsProposalsRefreshAttemptStatus>,
}Expand description
SnsProposalsCacheStatusReport
Serializable report describing one expected or discovered SNS proposal cache.
Fields§
§schema_version: u32§network: String§cache_root: String§input: String§found: bool§cache: Option<SnsProposalsCacheSummary>§expected_cache_path: Option<String>§refresh_attempt_path: Option<String>§latest_attempt: Option<SnsProposalsRefreshAttemptStatus>Trait Implementations§
Source§impl Clone for SnsProposalsCacheStatusReport
impl Clone for SnsProposalsCacheStatusReport
Source§fn clone(&self) -> SnsProposalsCacheStatusReport
fn clone(&self) -> SnsProposalsCacheStatusReport
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 moreimpl Eq for SnsProposalsCacheStatusReport
Source§impl PartialEq for SnsProposalsCacheStatusReport
impl PartialEq for SnsProposalsCacheStatusReport
Source§fn eq(&self, other: &SnsProposalsCacheStatusReport) -> bool
fn eq(&self, other: &SnsProposalsCacheStatusReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SnsProposalsCacheStatusReport
Auto Trait Implementations§
impl Freeze for SnsProposalsCacheStatusReport
impl RefUnwindSafe for SnsProposalsCacheStatusReport
impl Send for SnsProposalsCacheStatusReport
impl Sync for SnsProposalsCacheStatusReport
impl Unpin for SnsProposalsCacheStatusReport
impl UnsafeUnpin for SnsProposalsCacheStatusReport
impl UnwindSafe for SnsProposalsCacheStatusReport
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.