pub enum NnsNeuronCollectionStatus {
Ready,
Collecting,
Complete,
PageLimitReached,
}Expand description
NnsNeuronCollectionStatus
Lifecycle of a caller-owned resumable public-neuron 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 NnsNeuronCollectionStatus
impl Clone for NnsNeuronCollectionStatus
Source§fn clone(&self) -> NnsNeuronCollectionStatus
fn clone(&self) -> NnsNeuronCollectionStatus
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 NnsNeuronCollectionStatus
Source§impl Debug for NnsNeuronCollectionStatus
impl Debug for NnsNeuronCollectionStatus
Source§impl<'de> Deserialize<'de> for NnsNeuronCollectionStatus
impl<'de> Deserialize<'de> for NnsNeuronCollectionStatus
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
Source§impl Display for NnsNeuronCollectionStatus
impl Display for NnsNeuronCollectionStatus
impl Eq for NnsNeuronCollectionStatus
impl StructuralPartialEq for NnsNeuronCollectionStatus
Auto Trait Implementations§
impl Freeze for NnsNeuronCollectionStatus
impl RefUnwindSafe for NnsNeuronCollectionStatus
impl Send for NnsNeuronCollectionStatus
impl Sync for NnsNeuronCollectionStatus
impl Unpin for NnsNeuronCollectionStatus
impl UnsafeUnpin for NnsNeuronCollectionStatus
impl UnwindSafe for NnsNeuronCollectionStatus
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