pub enum UnregisterStatus {
Ok,
Error,
ActiveCall,
Unknown(u32),
}Expand description
Station result attached to an unregister acknowledgement.
Variants§
Ok
Error
ActiveCall
Unknown(u32)
Preserves an SCCP numeric value not recognized by this crate. Allows newer or vendor-specific values to round-trip without loss.
Implementations§
Trait Implementations§
Source§impl Clone for UnregisterStatus
impl Clone for UnregisterStatus
Source§fn clone(&self) -> UnregisterStatus
fn clone(&self) -> UnregisterStatus
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 UnregisterStatus
Source§impl Debug for UnregisterStatus
impl Debug for UnregisterStatus
impl Eq for UnregisterStatus
Source§impl From<UnregisterStatus> for u32
impl From<UnregisterStatus> for u32
Source§fn from(value: UnregisterStatus) -> Self
fn from(value: UnregisterStatus) -> Self
Converts to this type from the input type.
Source§impl From<u32> for UnregisterStatus
impl From<u32> for UnregisterStatus
Source§impl Hash for UnregisterStatus
impl Hash for UnregisterStatus
Source§impl PartialEq for UnregisterStatus
impl PartialEq for UnregisterStatus
impl StructuralPartialEq for UnregisterStatus
Auto Trait Implementations§
impl Freeze for UnregisterStatus
impl RefUnwindSafe for UnregisterStatus
impl Send for UnregisterStatus
impl Sync for UnregisterStatus
impl Unpin for UnregisterStatus
impl UnsafeUnpin for UnregisterStatus
impl UnwindSafe for UnregisterStatus
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