Struct stun_codec::RawAttribute[][src]

pub struct RawAttribute { /* fields omitted */ }

An Attribute implementation that has raw value bytes.

Implementations

impl RawAttribute[src]

pub fn new(attr_type: AttributeType, value: Vec<u8>) -> Self[src]

Makes a new RawAttribute instance.

pub fn value(&self) -> &[u8][src]

Returns a reference to the value bytes of the attribute.

pub fn into_value(self) -> Vec<u8>[src]

Takes ownership of this instance, and returns the value bytes.

Trait Implementations

impl Attribute for RawAttribute[src]

type Decoder = RawAttributeDecoder

The decoder of the value part of the attribute.

type Encoder = RawAttributeEncoder

The encoder of the value part of the attribute.

impl Clone for RawAttribute[src]

impl Debug for RawAttribute[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.