Struct stun_codec::Method[][src]

pub struct Method(_);

STUN method.

All STUN messages start with a fixed header that includes a method, a class, and the transaction ID. The method indicates which of the various requests or indications this is;

RFC 5389 -- 3. Overview of Operation

Methods

impl Method
[src]

Makes a new Method instance with the given codepoint.

Errors

If codepoint is greater than 0xFFF, this will return an ErrorKind::InvalidInput error.

Returns the codepoint corresponding this method.

Trait Implementations

impl Debug for Method
[src]

Formats the value using the given formatter. Read more

impl Clone for Method
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Method
[src]

impl PartialEq for Method
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Method
[src]

impl Hash for Method
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialOrd for Method
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for Method
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl From<u8> for Method
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Method

impl Sync for Method