#[repr(u16)]pub enum SessionPatchAckStatus {
Accepted = 0,
PartiallyApplied = 1,
Rejected = 2,
}Variants§
Implementations§
Source§impl SessionPatchAckStatus
impl SessionPatchAckStatus
pub fn try_from_u16(value: u16) -> Result<Self, NnrpError>
Trait Implementations§
Source§impl Clone for SessionPatchAckStatus
impl Clone for SessionPatchAckStatus
Source§fn clone(&self) -> SessionPatchAckStatus
fn clone(&self) -> SessionPatchAckStatus
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 moreSource§impl Debug for SessionPatchAckStatus
impl Debug for SessionPatchAckStatus
Source§impl PartialEq for SessionPatchAckStatus
impl PartialEq for SessionPatchAckStatus
Source§fn eq(&self, other: &SessionPatchAckStatus) -> bool
fn eq(&self, other: &SessionPatchAckStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SessionPatchAckStatus
impl Eq for SessionPatchAckStatus
impl StructuralPartialEq for SessionPatchAckStatus
Auto Trait Implementations§
impl Freeze for SessionPatchAckStatus
impl RefUnwindSafe for SessionPatchAckStatus
impl Send for SessionPatchAckStatus
impl Sync for SessionPatchAckStatus
impl Unpin for SessionPatchAckStatus
impl UnsafeUnpin for SessionPatchAckStatus
impl UnwindSafe for SessionPatchAckStatus
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