pub enum Record {
Show 20 variants
NULL,
START,
DIE,
I_AM_DEAD,
PEER_DOWN,
BGP(BGP),
RIP(RIP),
IDRP,
RIPNG(RIPNG),
BGP4PLUS(BGP4PLUS),
BGP4PLUS_01(BGP4PLUS),
OSPFv2(OSPFv2),
TABLE_DUMP(TABLE_DUMP),
TABLE_DUMP_V2(TABLE_DUMP_V2),
BGP4MP(BGP4MP),
BGP4MP_ET(BGP4MP),
ISIS(Vec<u8>),
ISIS_ET(Vec<u8>),
OSPFv3(OSPFv3),
OSPFv3_ET(OSPFv3),
}
Expand description
Represents a single MRT record.
Variants§
NULL
START
DIE
I_AM_DEAD
PEER_DOWN
BGP(BGP)
RIP(RIP)
IDRP
RIPNG(RIPNG)
BGP4PLUS(BGP4PLUS)
BGP4PLUS_01(BGP4PLUS)
OSPFv2(OSPFv2)
TABLE_DUMP(TABLE_DUMP)
TABLE_DUMP_V2(TABLE_DUMP_V2)
BGP4MP(BGP4MP)
BGP4MP_ET(BGP4MP)
ISIS(Vec<u8>)
ISIS_ET(Vec<u8>)
OSPFv3(OSPFv3)
OSPFv3_ET(OSPFv3)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Record
impl RefUnwindSafe for Record
impl Send for Record
impl Sync for Record
impl Unpin for Record
impl UnwindSafe for Record
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more