#[non_exhaustive]pub enum StabilizeStatusV0 {
#[non_exhaustive] Settled {
wave: u64,
recomputed_node_count: usize,
},
#[non_exhaustive] Pending {
wave: u64,
recomputed_node_count: usize,
},
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
#[non_exhaustive]Settled
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
#[non_exhaustive]Pending
Trait Implementations§
Source§impl Clone for StabilizeStatusV0
impl Clone for StabilizeStatusV0
Source§fn clone(&self) -> StabilizeStatusV0
fn clone(&self) -> StabilizeStatusV0
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 StabilizeStatusV0
Source§impl Debug for StabilizeStatusV0
impl Debug for StabilizeStatusV0
impl Eq for StabilizeStatusV0
Source§impl PartialEq for StabilizeStatusV0
impl PartialEq for StabilizeStatusV0
impl StructuralPartialEq for StabilizeStatusV0
Auto Trait Implementations§
impl Freeze for StabilizeStatusV0
impl RefUnwindSafe for StabilizeStatusV0
impl Send for StabilizeStatusV0
impl Sync for StabilizeStatusV0
impl Unpin for StabilizeStatusV0
impl UnsafeUnpin for StabilizeStatusV0
impl UnwindSafe for StabilizeStatusV0
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