[][src]Struct bgpdump::records::tabledump::PEER_INDEX_TABLE

pub struct PEER_INDEX_TABLE {
    pub collector_id: u32,
    pub view_name: String,
    pub peer_entries: Vec<PeerEntry>,
}

This record provides the BGP ID of the collector, an optional view name, and a list of indexed peers.

Fields

collector_id: u32

The identifier of the collector often set to its IPv4 address.

view_name: String

Optional associated view name. Set to the empty string if empty.

peer_entries: Vec<PeerEntry>

An array of peers from which messages were received.

Trait Implementations

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