#[repr(u16)]pub enum AckGapReason {
NotContiguouslyAvailable = 1,
}Expand description
Singleton normal-ack gap reason.
Variants§
NotContiguouslyAvailable = 1
Requested range was not contiguously available.
Implementations§
Source§impl AckGapReason
impl AckGapReason
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 AckGapReason
impl Clone for AckGapReason
Source§fn clone(&self) -> AckGapReason
fn clone(&self) -> AckGapReason
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 AckGapReason
Source§impl Debug for AckGapReason
impl Debug for AckGapReason
impl Eq for AckGapReason
Source§impl From<AckGapReason> for u16
impl From<AckGapReason> for u16
Source§fn from(value: AckGapReason) -> Self
fn from(value: AckGapReason) -> Self
Converts to this type from the input type.
Source§impl Hash for AckGapReason
impl Hash for AckGapReason
Source§impl PartialEq for AckGapReason
impl PartialEq for AckGapReason
impl StructuralPartialEq for AckGapReason
Auto Trait Implementations§
impl Freeze for AckGapReason
impl RefUnwindSafe for AckGapReason
impl Send for AckGapReason
impl Sync for AckGapReason
impl Unpin for AckGapReason
impl UnsafeUnpin for AckGapReason
impl UnwindSafe for AckGapReason
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