[][src]Struct bgp_rs::Update

pub struct Update { /* fields omitted */ }

Represents a BGP Update message.

Methods

impl Update[src]

pub fn get(&self, identifier: Identifier) -> Option<&PathAttribute>[src]

Retrieves the first PathAttribute that matches the given identifier.

pub fn is_announcement(&self) -> bool[src]

Checks if this UPDATE message contains announced prefixes.

pub fn is_withdrawal(&self) -> bool[src]

Checks if this UPDATE message contains withdrawn routes..

pub fn normalize(&mut self)[src]

Moves the MP_REACH and MP_UNREACH NLRI into the NLRI.

Trait Implementations

impl Debug for Update[src]

Auto Trait Implementations

impl Send for Update

impl Sync for Update

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.