[][src]Struct bgpdump::records::bgp4mp::STATE_CHANGE_AS4

pub struct STATE_CHANGE_AS4 {
    pub peer_as: u32,
    pub local_as: u32,
    pub interface: u16,
    pub peer_address: IpAddr,
    pub local_address: IpAddr,
    pub old_state: u16,
    pub new_state: u16,
}

Represents a state change in the BGP Finite State Machine (FSM).

1 Idle 2 Connect 3 Active 4 OpenSent 5 OpenConfirm 6 Established More information can found in RFC4271.

Fields

peer_as: u32

The peer ASN from which the BGP message has been received.

local_as: u32

The ASN of the AS that received this BGP message.

interface: u16

The interface identifier to which this message applies.

peer_address: IpAddr

The peer IP address address from which the BGP message has been received.

local_address: IpAddr

The IP address of the AS that received this BGP message.

old_state: u16

The old state of the BGP collector.

new_state: u16

The new state of the BGP collector.

Trait Implementations

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