[][src]Struct mrt_rs::BGP4PLUS_STATE_CHANGE

pub struct BGP4PLUS_STATE_CHANGE {
    pub peer_as: u16,
    pub peer_ip: Ipv6Addr,
    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: u16

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

peer_ip: Ipv6Addr

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

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 BGP4PLUS_STATE_CHANGE[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for 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, 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.

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

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