pub struct RIPNG {
pub remote: Ipv6Addr,
pub local: Ipv6Addr,
pub message: Vec<u8>,
}Expand description
The RIP struct represents the data contained in an MRT record type of RIP.
Fields§
§remote: Ipv6AddrThe IPv6 address of the router from which this message was received.
local: Ipv6AddrThe IPv6 address of the interface at which this message was received.
message: Vec<u8>The message that has been received.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RIPNG
impl RefUnwindSafe for RIPNG
impl Send for RIPNG
impl Sync for RIPNG
impl Unpin for RIPNG
impl UnwindSafe for RIPNG
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