Trait netstack3_device::ArpSenderContext

source ·
pub trait ArpSenderContext<D: ArpDevice, BC: ArpBindingsContext<D, Self::DeviceId>>: ArpConfigContext + DeviceIdContext<D> {
    // Required method
    fn send_ip_packet_to_neighbor_link_addr<S>(
        &mut self,
        bindings_ctx: &mut BC,
        dst_link_address: D::Address,
        body: S,
    ) -> Result<(), SendFrameError<S>>
       where S: Serializer,
             S::Buffer: BufferMut;
}
Expand description

An execution context for the ARP protocol that allows sending IP packets to specific neighbors.

Required Methods§

Send an IP packet to the neighbor with address dst_link_address.

Object Safety§

This trait is not object safe.

Implementors§