pub struct OSPFv3 {
pub remote: IpAddr,
pub local: IpAddr,
pub message: Vec<u8>,
}
Expand description
The OSPFv3 struct represents the data contained in an MRT record type of OSPFv3 and OSPFv3_ET.
Fields§
§remote: IpAddr
The IP address of the router from which this message was received.
local: IpAddr
The IP 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 OSPFv3
impl RefUnwindSafe for OSPFv3
impl Send for OSPFv3
impl Sync for OSPFv3
impl Unpin for OSPFv3
impl UnwindSafe for OSPFv3
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