pub struct NeighborSolicitation {
pub target_addr: Ipv6Addr,
pub source_ll_addr: Option<[u8; 6]>,
}Expand description
Parsed ICMPv6 Neighbor Solicitation.
Fields§
§target_addr: Ipv6AddrTarget IPv6 address being queried.
source_ll_addr: Option<[u8; 6]>Source link-layer address option (if present).
Implementations§
Trait Implementations§
Source§impl Clone for NeighborSolicitation
impl Clone for NeighborSolicitation
Source§fn clone(&self) -> NeighborSolicitation
fn clone(&self) -> NeighborSolicitation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for NeighborSolicitation
impl RefUnwindSafe for NeighborSolicitation
impl Send for NeighborSolicitation
impl Sync for NeighborSolicitation
impl Unpin for NeighborSolicitation
impl UnsafeUnpin for NeighborSolicitation
impl UnwindSafe for NeighborSolicitation
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