pub struct ArpPacket<T: AsRef<[u8]>> { /* private fields */ }
Expand description
A read/write wrapper around an Address Resolution Protocol packet buffer.
Implementations§
Source§impl<T: AsRef<[u8]>> Packet<T>
impl<T: AsRef<[u8]>> Packet<T>
Sourcepub const fn new_unchecked(buffer: T) -> Packet<T>
pub const fn new_unchecked(buffer: T) -> Packet<T>
Imbue a raw octet buffer with ARP packet structure.
Sourcepub fn new_checked(buffer: T) -> Result<Packet<T>>
pub fn new_checked(buffer: T) -> Result<Packet<T>>
Shorthand for a combination of new_unchecked and check_len.
Sourcepub fn check_len(&self) -> Result<()>
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.
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consume the packet, returning the underlying buffer.
Sourcepub fn hardware_type(&self) -> Hardware
pub fn hardware_type(&self) -> Hardware
Return the hardware type field.
Sourcepub fn protocol_type(&self) -> Protocol
pub fn protocol_type(&self) -> Protocol
Return the protocol type field.
Sourcepub fn hardware_len(&self) -> u8
pub fn hardware_len(&self) -> u8
Return the hardware length field.
Sourcepub fn protocol_len(&self) -> u8
pub fn protocol_len(&self) -> u8
Return the protocol length field.
Sourcepub fn source_hardware_addr(&self) -> &[u8]
pub fn source_hardware_addr(&self) -> &[u8]
Return the source hardware address field.
Sourcepub fn source_protocol_addr(&self) -> &[u8]
pub fn source_protocol_addr(&self) -> &[u8]
Return the source protocol address field.
Sourcepub fn target_hardware_addr(&self) -> &[u8]
pub fn target_hardware_addr(&self) -> &[u8]
Return the target hardware address field.
Sourcepub fn target_protocol_addr(&self) -> &[u8]
pub fn target_protocol_addr(&self) -> &[u8]
Return the target protocol address field.
Source§impl<T: AsRef<[u8]> + AsMut<[u8]>> Packet<T>
impl<T: AsRef<[u8]> + AsMut<[u8]>> Packet<T>
Sourcepub fn set_hardware_type(&mut self, value: Hardware)
pub fn set_hardware_type(&mut self, value: Hardware)
Set the hardware type field.
Sourcepub fn set_protocol_type(&mut self, value: Protocol)
pub fn set_protocol_type(&mut self, value: Protocol)
Set the protocol type field.
Sourcepub fn set_hardware_len(&mut self, value: u8)
pub fn set_hardware_len(&mut self, value: u8)
Set the hardware length field.
Sourcepub fn set_protocol_len(&mut self, value: u8)
pub fn set_protocol_len(&mut self, value: u8)
Set the protocol length field.
Sourcepub fn set_operation(&mut self, value: Operation)
pub fn set_operation(&mut self, value: Operation)
Set the operation field.
Sourcepub fn set_source_hardware_addr(&mut self, value: &[u8])
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.
Sourcepub fn set_source_protocol_addr(&mut self, value: &[u8])
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.
Sourcepub fn set_target_hardware_addr(&mut self, value: &[u8])
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.
Sourcepub fn set_target_protocol_addr(&mut self, value: &[u8])
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.