pub enum QosDirection {
Send,
Receive,
SendReceive,
Unknown(u32),
}Expand description
RSVP reservation direction carried by SCCP QoS service messages.
Variants§
Send
Receive
SendReceive
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 QosDirection
impl Clone for QosDirection
Source§fn clone(&self) -> QosDirection
fn clone(&self) -> QosDirection
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 QosDirection
Source§impl Debug for QosDirection
impl Debug for QosDirection
impl Eq for QosDirection
Source§impl From<QosDirection> for u32
impl From<QosDirection> for u32
Source§fn from(value: QosDirection) -> Self
fn from(value: QosDirection) -> Self
Converts to this type from the input type.
Source§impl From<u32> for QosDirection
impl From<u32> for QosDirection
Source§impl Hash for QosDirection
impl Hash for QosDirection
Source§impl PartialEq for QosDirection
impl PartialEq for QosDirection
impl StructuralPartialEq for QosDirection
Auto Trait Implementations§
impl Freeze for QosDirection
impl RefUnwindSafe for QosDirection
impl Send for QosDirection
impl Sync for QosDirection
impl Unpin for QosDirection
impl UnsafeUnpin for QosDirection
impl UnwindSafe for QosDirection
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