pub enum RsvpErrorCode {
Show 18 variants
Confirm,
Admission,
Administrative,
NoPathInformation,
NoSenderInformation,
ConflictingStyle,
UnknownStyle,
ConflictingDestinationPorts,
ConflictingSourcePorts,
ServicePreempted,
UnknownObjectClass,
UnknownClassType,
Api,
Traffic,
TrafficSystem,
System,
RoutingProblem,
Unknown(u32),
}Expand description
RSVP protocol error returned by a failed QoS reservation.
Variants§
Confirm
Admission
Administrative
NoPathInformation
NoSenderInformation
ConflictingStyle
UnknownStyle
ConflictingDestinationPorts
ConflictingSourcePorts
ServicePreempted
UnknownObjectClass
UnknownClassType
Api
Traffic
TrafficSystem
System
RoutingProblem
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 RsvpErrorCode
impl Clone for RsvpErrorCode
Source§fn clone(&self) -> RsvpErrorCode
fn clone(&self) -> RsvpErrorCode
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 RsvpErrorCode
Source§impl Debug for RsvpErrorCode
impl Debug for RsvpErrorCode
impl Eq for RsvpErrorCode
Source§impl From<RsvpErrorCode> for u32
impl From<RsvpErrorCode> for u32
Source§fn from(value: RsvpErrorCode) -> Self
fn from(value: RsvpErrorCode) -> Self
Converts to this type from the input type.
Source§impl From<u32> for RsvpErrorCode
impl From<u32> for RsvpErrorCode
Source§impl Hash for RsvpErrorCode
impl Hash for RsvpErrorCode
Source§impl PartialEq for RsvpErrorCode
impl PartialEq for RsvpErrorCode
impl StructuralPartialEq for RsvpErrorCode
Auto Trait Implementations§
impl Freeze for RsvpErrorCode
impl RefUnwindSafe for RsvpErrorCode
impl Send for RsvpErrorCode
impl Sync for RsvpErrorCode
impl Unpin for RsvpErrorCode
impl UnsafeUnpin for RsvpErrorCode
impl UnwindSafe for RsvpErrorCode
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