[][src]Struct ppp::model::Tlv

pub struct Tlv { /* fields omitted */ }

A Type-Length-Value object.

Methods

impl Tlv[src]

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

The type used to interpret the value.

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

The value.

pub fn len(&self) -> usize[src]

The length of the value.

pub fn is_empty(&self) -> bool[src]

A predicate to test if the Tlv has a length equal to zero.

pub fn new(value_type: u8, value: Vec<u8>) -> Tlv[src]

Create a new instance of a Tlv.

Trait Implementations

impl Eq for Tlv[src]

impl Clone for Tlv[src]

impl PartialEq<Tlv> for Tlv[src]

impl Debug for Tlv[src]

Auto Trait Implementations

impl Send for Tlv

impl Unpin for Tlv

impl Sync for Tlv

impl UnwindSafe for Tlv

impl RefUnwindSafe for Tlv

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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