pub struct MutableArpPacket<'p> { /* private fields */ }
Expand description
A structure enabling manipulation of on the wire packets
Implementations§
Source§impl<'a> MutableArpPacket<'a>
impl<'a> MutableArpPacket<'a>
Sourcepub fn new<'p>(packet: &'p mut [u8]) -> Option<MutableArpPacket<'p>>
pub fn new<'p>(packet: &'p mut [u8]) -> Option<MutableArpPacket<'p>>
Constructs a new MutableArpPacket. If the provided buffer is less than the minimum required packet size, this will return None.
Sourcepub fn owned(packet: Vec<u8>) -> Option<MutableArpPacket<'static>>
pub fn owned(packet: Vec<u8>) -> Option<MutableArpPacket<'static>>
Constructs a new MutableArpPacket. If the provided buffer is less than the minimum required packet size, this will return None. With this constructor the MutableArpPacket will own its own data and the underlying buffer will be dropped when the MutableArpPacket is.
Sourcepub fn to_immutable<'p>(&'p self) -> ArpPacket<'p>
pub fn to_immutable<'p>(&'p self) -> ArpPacket<'p>
Maps from a MutableArpPacket to a ArpPacket
Sourcepub fn consume_to_immutable(self) -> ArpPacket<'a>
pub fn consume_to_immutable(self) -> ArpPacket<'a>
Maps from a MutableArpPacket to a ArpPacket while consuming the source
Sourcepub const fn minimum_packet_size() -> usize
pub const fn minimum_packet_size() -> usize
The minimum size (in bytes) a packet of this type can be. It’s based on the total size of the fixed-size fields.
Sourcepub fn packet_size(_packet: &Arp) -> usize
pub fn packet_size(_packet: &Arp) -> usize
The size (in bytes) of a Arp instance when converted into a byte-array
Sourcepub fn get_hardware_type(&self) -> ArpHardwareType
pub fn get_hardware_type(&self) -> ArpHardwareType
Get the value of the hardware_type field
Sourcepub fn get_protocol_type(&self) -> EtherType
pub fn get_protocol_type(&self) -> EtherType
Get the value of the protocol_type field
Sourcepub fn get_hw_addr_len(&self) -> u8
pub fn get_hw_addr_len(&self) -> u8
Get the hw_addr_len field.
Sourcepub fn get_proto_addr_len(&self) -> u8
pub fn get_proto_addr_len(&self) -> u8
Get the proto_addr_len field.
Sourcepub fn get_operation(&self) -> ArpOperation
pub fn get_operation(&self) -> ArpOperation
Get the value of the operation field
Sourcepub fn get_sender_hw_addr(&self) -> MacAddr
pub fn get_sender_hw_addr(&self) -> MacAddr
Get the value of the sender_hw_addr field
Sourcepub fn get_sender_proto_addr(&self) -> Ipv4Addr
pub fn get_sender_proto_addr(&self) -> Ipv4Addr
Get the value of the sender_proto_addr field
Sourcepub fn get_target_hw_addr(&self) -> MacAddr
pub fn get_target_hw_addr(&self) -> MacAddr
Get the value of the target_hw_addr field
Sourcepub fn get_target_proto_addr(&self) -> Ipv4Addr
pub fn get_target_proto_addr(&self) -> Ipv4Addr
Get the value of the target_proto_addr field
Sourcepub fn set_hardware_type(&mut self, val: ArpHardwareType)
pub fn set_hardware_type(&mut self, val: ArpHardwareType)
Set the value of the hardware_type field.
Sourcepub fn set_protocol_type(&mut self, val: EtherType)
pub fn set_protocol_type(&mut self, val: EtherType)
Set the value of the protocol_type field.
Sourcepub fn set_hw_addr_len(&mut self, val: u8)
pub fn set_hw_addr_len(&mut self, val: u8)
Set the hw_addr_len field.
Sourcepub fn set_proto_addr_len(&mut self, val: u8)
pub fn set_proto_addr_len(&mut self, val: u8)
Set the proto_addr_len field.
Sourcepub fn set_operation(&mut self, val: ArpOperation)
pub fn set_operation(&mut self, val: ArpOperation)
Set the value of the operation field.
Sourcepub fn set_sender_hw_addr(&mut self, val: MacAddr)
pub fn set_sender_hw_addr(&mut self, val: MacAddr)
Set the value of the sender_hw_addr field.
Sourcepub fn set_sender_proto_addr(&mut self, val: Ipv4Addr)
pub fn set_sender_proto_addr(&mut self, val: Ipv4Addr)
Set the value of the sender_proto_addr field.
Sourcepub fn set_target_hw_addr(&mut self, val: MacAddr)
pub fn set_target_hw_addr(&mut self, val: MacAddr)
Set the value of the target_hw_addr field.
Sourcepub fn set_target_proto_addr(&mut self, val: Ipv4Addr)
pub fn set_target_proto_addr(&mut self, val: Ipv4Addr)
Set the value of the target_proto_addr field.
Sourcepub fn set_payload(&mut self, vals: &[u8])
pub fn set_payload(&mut self, vals: &[u8])
Set the value of the payload field (copies contents)