xarxa

Crates

git

Versions

default

Flavors

Skip to main content

ArpPacket

Struct ArpPacket 

Source
pub struct ArpPacket<'a> { /* private fields */ }
Expand description

A read/write wrapper around an Address Resolution Protocol packet buffer.

Implementations§

Source§

impl<'a> Packet<'a>

Source

pub const fn new_unchecked(buffer: &'a mut [u8]) -> Packet<'a>

Imbue a raw octet buffer with ARP packet structure.

Source

pub fn new_checked(buffer: &'a mut [u8]) -> Result<Packet<'a>>

Shorthand for a combination of new_unchecked and check_len.

Source

pub fn check_len(&self) -> Result<()>

Ensure that no accessor method will panic if called. Returns Err(Error) if the buffer is too short.

The result of this check is invalidated by calling set_hardware_len or set_protocol_len.

Source

pub fn hardware_type(&self) -> Hardware

Return the hardware type field.

Source

pub fn protocol_type(&self) -> Protocol

Return the protocol type field.

Source

pub fn hardware_len(&self) -> u8

Return the hardware length field.

Source

pub fn protocol_len(&self) -> u8

Return the protocol length field.

Source

pub fn operation(&self) -> Operation

Return the operation field.

Source

pub fn source_hardware_addr(&self) -> &[u8]

Return the source hardware address field.

Source

pub fn source_protocol_addr(&self) -> &[u8]

Return the source protocol address field.

Source

pub fn target_hardware_addr(&self) -> &[u8]

Return the target hardware address field.

Source

pub fn target_protocol_addr(&self) -> &[u8]

Return the target protocol address field.

Source

pub fn set_hardware_type(&mut self, value: Hardware)

Set the hardware type field.

Source

pub fn set_protocol_type(&mut self, value: Protocol)

Set the protocol type field.

Source

pub fn set_hardware_len(&mut self, value: u8)

Set the hardware length field.

Source

pub fn set_protocol_len(&mut self, value: u8)

Set the protocol length field.

Source

pub fn set_operation(&mut self, value: Operation)

Set the operation field.

Source

pub fn set_source_hardware_addr(&mut self, value: &[u8])

Set the source hardware address field.

§Panics

The function panics if value is not self.hardware_len() long.

Source

pub fn set_source_protocol_addr(&mut self, value: &[u8])

Set the source protocol address field.

§Panics

The function panics if value is not self.protocol_len() long.

Source

pub fn set_target_hardware_addr(&mut self, value: &[u8])

Set the target hardware address field.

§Panics

The function panics if value is not self.hardware_len() long.

Source

pub fn set_target_protocol_addr(&mut self, value: &[u8])

Set the target protocol address field.

§Panics

The function panics if value is not self.protocol_len() long.

Trait Implementations§

Source§

impl<'a> AsRef<[u8]> for Packet<'a>

Source§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<'a> Debug for Packet<'a>

Source§

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

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

impl<'a> Eq for Packet<'a>

Source§

impl<'a> PartialEq for Packet<'a>

Source§

fn eq(&self, other: &Packet<'a>) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl<'a> StructuralPartialEq for Packet<'a>

Auto Trait Implementations§

§

impl<'a> !UnwindSafe for Packet<'a>

§

impl<'a> Freeze for Packet<'a>

§

impl<'a> RefUnwindSafe for Packet<'a>

§

impl<'a> Send for Packet<'a>

§

impl<'a> Sync for Packet<'a>

§

impl<'a> Unpin for Packet<'a>

§

impl<'a> UnsafeUnpin for Packet<'a>

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.

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>,

Source§

type Error = !

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>,

Source§

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.