pub struct ArpPacketBuilder<HwAddr, ProtoAddr> { /* private fields */ }
Expand description

A builder for ARP packets.

Implementations§

source§

impl<HwAddr, ProtoAddr> ArpPacketBuilder<HwAddr, ProtoAddr>

source

pub fn new( operation: ArpOp, sender_hardware_addr: HwAddr, sender_protocol_addr: ProtoAddr, target_hardware_addr: HwAddr, target_protocol_addr: ProtoAddr ) -> ArpPacketBuilder<HwAddr, ProtoAddr>

Construct a new ArpPacketBuilder.

Trait Implementations§

source§

impl<HwAddr: Debug, ProtoAddr: Debug> Debug for ArpPacketBuilder<HwAddr, ProtoAddr>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<HwAddr, ProtoAddr> InnerPacketBuilder for ArpPacketBuilder<HwAddr, ProtoAddr>
where HwAddr: Copy + HType + FromBytes + AsBytes + NoCell + Unaligned, ProtoAddr: Copy + PType + FromBytes + AsBytes + NoCell + Unaligned,

source§

fn bytes_len(&self) -> usize

The number of bytes consumed by this packet.
source§

fn serialize(&self, buffer: &mut [u8])

Serializes this packet into an existing buffer. Read more
§

fn into_serializer(self) -> InnerSerializer<Self, EmptyBuf>
where Self: Sized,

Converts this InnerPacketBuilder into a [Serializer]. Read more
§

fn into_serializer_with<B>(self, buffer: B) -> InnerSerializer<Self, B>
where B: ShrinkBuffer, Self: Sized,

Converts this InnerPacketBuilder into a [Serializer] with a buffer that can be used for serialization. Read more

Auto Trait Implementations§

§

impl<HwAddr, ProtoAddr> Freeze for ArpPacketBuilder<HwAddr, ProtoAddr>
where HwAddr: Freeze, ProtoAddr: Freeze,

§

impl<HwAddr, ProtoAddr> RefUnwindSafe for ArpPacketBuilder<HwAddr, ProtoAddr>
where HwAddr: RefUnwindSafe, ProtoAddr: RefUnwindSafe,

§

impl<HwAddr, ProtoAddr> Send for ArpPacketBuilder<HwAddr, ProtoAddr>
where HwAddr: Send, ProtoAddr: Send,

§

impl<HwAddr, ProtoAddr> Sync for ArpPacketBuilder<HwAddr, ProtoAddr>
where HwAddr: Sync, ProtoAddr: Sync,

§

impl<HwAddr, ProtoAddr> Unpin for ArpPacketBuilder<HwAddr, ProtoAddr>
where HwAddr: Unpin, ProtoAddr: Unpin,

§

impl<HwAddr, ProtoAddr> UnwindSafe for ArpPacketBuilder<HwAddr, ProtoAddr>
where HwAddr: UnwindSafe, ProtoAddr: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more