Struct stun_codec::rfc5389::attributes::Username[][src]

pub struct Username { /* fields omitted */ }

USERNAME attribute.

See RFC 5389 -- 15.3. USERNAME about this attribute.

TODO

  • Support SASLprep [RFC 4013]

Implementations

impl Username[src]

pub const CODEPOINT: u16[src]

The codepoint of the type of the attribute.

pub fn new(name: String) -> Result<Self>[src]

Makes a new Username instance.

Errors

The length of name must be less then 513 bytes. If it is too long, this will return an ErrorKind::InvalidInput error.

pub fn name(&self) -> &str[src]

Returns the name of this instance.

Trait Implementations

impl Attribute for Username[src]

type Decoder = UsernameDecoder

The decoder of the value part of the attribute.

type Encoder = UsernameEncoder

The encoder of the value part of the attribute.

impl Clone for Username[src]

impl Debug for Username[src]

impl Eq for Username[src]

impl From<Username> for Attribute[src]

impl Hash for Username[src]

impl PartialEq<Username> for Username[src]

impl StructuralEq for Username[src]

impl StructuralPartialEq for Username[src]

impl TryAsRef<Username> for Attribute[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.