#[repr(u16)]pub enum MarkerNotDeliveredReason {
NotDeliveredToProofEpoch = 1,
}Expand description
Singleton marker-not-delivered reason registry.
Variants§
NotDeliveredToProofEpoch = 1
Marker was not delivered to the proof epoch.
Implementations§
Source§impl MarkerNotDeliveredReason
impl MarkerNotDeliveredReason
Sourcepub const fn wire_value(self) -> u16
pub const fn wire_value(self) -> u16
Returns the stable v1 wire value.
Trait Implementations§
Source§impl Clone for MarkerNotDeliveredReason
impl Clone for MarkerNotDeliveredReason
Source§fn clone(&self) -> MarkerNotDeliveredReason
fn clone(&self) -> MarkerNotDeliveredReason
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 MarkerNotDeliveredReason
Source§impl Debug for MarkerNotDeliveredReason
impl Debug for MarkerNotDeliveredReason
impl Eq for MarkerNotDeliveredReason
Source§impl From<MarkerNotDeliveredReason> for u16
impl From<MarkerNotDeliveredReason> for u16
Source§fn from(value: MarkerNotDeliveredReason) -> Self
fn from(value: MarkerNotDeliveredReason) -> Self
Converts to this type from the input type.
Source§impl Hash for MarkerNotDeliveredReason
impl Hash for MarkerNotDeliveredReason
Source§impl PartialEq for MarkerNotDeliveredReason
impl PartialEq for MarkerNotDeliveredReason
impl StructuralPartialEq for MarkerNotDeliveredReason
Auto Trait Implementations§
impl Freeze for MarkerNotDeliveredReason
impl RefUnwindSafe for MarkerNotDeliveredReason
impl Send for MarkerNotDeliveredReason
impl Sync for MarkerNotDeliveredReason
impl Unpin for MarkerNotDeliveredReason
impl UnsafeUnpin for MarkerNotDeliveredReason
impl UnwindSafe for MarkerNotDeliveredReason
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