pub enum SnsRewardAllocationStatus {
Valid,
NoAllocation,
Invalid,
}Expand description
SnsRewardAllocationStatus
Reconciliation outcome for one pair of SNS reward checkpoints.
Variants§
Valid
Every invariant reconciled to one positive native reward distribution.
NoAllocation
Every invariant reconciled to a native distribution of zero.
Invalid
At least one checkpoint, continuity, policy, or reconciliation invariant failed.
Implementations§
Trait Implementations§
Source§impl Clone for SnsRewardAllocationStatus
impl Clone for SnsRewardAllocationStatus
Source§fn clone(&self) -> SnsRewardAllocationStatus
fn clone(&self) -> SnsRewardAllocationStatus
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 SnsRewardAllocationStatus
Source§impl Debug for SnsRewardAllocationStatus
impl Debug for SnsRewardAllocationStatus
Source§impl<'de> Deserialize<'de> for SnsRewardAllocationStatus
impl<'de> Deserialize<'de> for SnsRewardAllocationStatus
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 SnsRewardAllocationStatus
impl StructuralPartialEq for SnsRewardAllocationStatus
Auto Trait Implementations§
impl Freeze for SnsRewardAllocationStatus
impl RefUnwindSafe for SnsRewardAllocationStatus
impl Send for SnsRewardAllocationStatus
impl Sync for SnsRewardAllocationStatus
impl Unpin for SnsRewardAllocationStatus
impl UnsafeUnpin for SnsRewardAllocationStatus
impl UnwindSafe for SnsRewardAllocationStatus
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