pub enum NnsProposalCollectionStatus {
Ready,
Collecting,
Complete,
PageLimitReached,
}Expand description
NnsProposalCollectionStatus
Lifecycle of a caller-owned resumable proposal collection.
Variants§
Ready
No source page has been admitted yet.
Collecting
Another bounded page may be requested.
Complete
Governance API exhaustion was observed.
PageLimitReached
Another cursor exists, but the configured page ceiling was consumed.
Implementations§
Trait Implementations§
Source§impl Clone for NnsProposalCollectionStatus
impl Clone for NnsProposalCollectionStatus
Source§fn clone(&self) -> NnsProposalCollectionStatus
fn clone(&self) -> NnsProposalCollectionStatus
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 Copy for NnsProposalCollectionStatus
Source§impl Debug for NnsProposalCollectionStatus
impl Debug for NnsProposalCollectionStatus
Source§impl<'de> Deserialize<'de> for NnsProposalCollectionStatus
impl<'de> Deserialize<'de> for NnsProposalCollectionStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for NnsProposalCollectionStatus
impl StructuralPartialEq for NnsProposalCollectionStatus
Auto Trait Implementations§
impl Freeze for NnsProposalCollectionStatus
impl RefUnwindSafe for NnsProposalCollectionStatus
impl Send for NnsProposalCollectionStatus
impl Sync for NnsProposalCollectionStatus
impl Unpin for NnsProposalCollectionStatus
impl UnsafeUnpin for NnsProposalCollectionStatus
impl UnwindSafe for NnsProposalCollectionStatus
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