Struct stun_rs::ErrorCode

source ·
pub struct ErrorCode { /* private fields */ }
Expand description

The ErrorCode contains a numeric error code value in the range of 300 to 699 plus a textual reason phrase encoded in UTF-8 RFC3629; it is also consistent in its code assignments and semantics with SIP RFC3261 and HTTP RFC7231. The reason phrase is meant for diagnostic purposes and can be anything appropriate for the error code. Recommended reason phrases for the defined error codes are included in the IANA registry for error codes. The reason phrase MUST be a UTF-8-encoded RFC3629 sequence of fewer than 128 characters (which can be as long as 509 bytes when encoding them or 763 bytes when decoding them).

§Examples

 let attr = ErrorCode::new(420, "Unknown Attribute")?;
 assert_eq!(attr.class(), 4);
 assert_eq!(attr.number(), 20);
 assert_eq!(attr.error_code(), 420);
 assert_eq!(attr.reason(), "Unknown Attribute");

Implementations§

source§

impl ErrorCode

source

pub fn new(error_code: u16, reason: &str) -> Result<Self, StunError>

Creates a new ErrorCode type.

§Arguments:
  • error_code - The numeric error code.
  • reason - The reason phrase.
§Return:

The ErrorCode type or a StunError if the numeric error value is not in the range of 300 to 699.

source

pub fn error_code(&self) -> u16

Returns the numeric error code value .

source

pub fn class(&self) -> u8

Returns the class of the error code (the hundreds digit).

source

pub fn number(&self) -> u8

Returns the binary encoding of the error code modulo 100.

source

pub fn reason(&self) -> &str

Returns the reason phrase associated to this error.

Trait Implementations§

source§

impl Debug for ErrorCode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<ErrorCode> for ErrorCode

source§

fn from(error: ErrorCodeType) -> Self

Converts to this type from the input type.
source§

impl PartialEq for ErrorCode

source§

fn eq(&self, other: &ErrorCode) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for ErrorCode

source§

impl StructuralPartialEq for ErrorCode

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V