[][src]Struct bgp_rs::OpenParameter

pub struct OpenParameter {
    pub param_type: u8,
    pub length: u8,
    pub value: Vec<u8>,
}

Represents a parameter in the optional parameter section of an Open message.

Fields

param_type: u8

The type of the parameter.

length: u8

The length of the data that this parameter holds in bytes.

value: Vec<u8>

The value that is set for this parameter.

Trait Implementations

impl Debug for OpenParameter[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.