[][src]Struct bgpdump::records::bgp4plus::MESSAGE

pub struct MESSAGE {
    pub peer_as: u16,
    pub peer_ip: Ipv6Addr,
    pub local_as: u16,
    pub local_ip: Ipv6Addr,
    pub message: Vec<u8>,
}

Represents the BGP_UPDATE, BGP_OPEN, BGP_NOTIFY and BGP_KEEPALIVE subtypes of IPv6 peers.

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.

local_as: u16

The ASN of the AS that received this BGP message.

local_ip: Ipv6Addr

The IPv6 of the AS that received this BGP message.

message: Vec<u8>

The message that has been received.

Trait Implementations

impl Debug for MESSAGE[src]

Auto Trait Implementations

impl RefUnwindSafe for MESSAGE

impl Send for MESSAGE

impl Sync for MESSAGE

impl Unpin for MESSAGE

impl UnwindSafe for MESSAGE

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.