Struct netsim_embed::ethernet::MutableEthernetPacket [−][src]
pub struct MutableEthernetPacket<'p> { /* fields omitted */ }
A structure enabling manipulation of on the wire packets
Implementations
impl<'a> MutableEthernetPacket<'a>
[src]
impl<'a> MutableEthernetPacket<'a>
[src]pub fn new(packet: &'p mut [u8]) -> Option<MutableEthernetPacket<'p>>
[src]
Constructs a new MutableEthernetPacket. If the provided buffer is less than the minimum required packet size, this will return None.
pub fn owned(packet: Vec<u8, Global>) -> Option<MutableEthernetPacket<'static>>
[src]
Constructs a new MutableEthernetPacket. If the provided buffer is less than the minimum required packet size, this will return None. With this constructor the MutableEthernetPacket will own its own data and the underlying buffer will be dropped when the MutableEthernetPacket is.
pub fn to_immutable(&'p self) -> EthernetPacket<'p>
[src]
Maps from a MutableEthernetPacket to a EthernetPacket
pub fn consume_to_immutable(self) -> EthernetPacket<'a>
[src]
Maps from a MutableEthernetPacket to a EthernetPacket while consuming the source
pub const fn minimum_packet_size() -> usize
[src]
The minimum size (in bytes) a packet of this type can be. It’s based on the total size of the fixed-size fields.
pub fn packet_size(_packet: &Ethernet) -> usize
[src]
The size (in bytes) of a Ethernet instance when converted into a byte-array
pub fn populate(&mut self, packet: &Ethernet)
[src]
Populates a EthernetPacket using a Ethernet structure
pub fn get_destination(&self) -> MacAddr
[src]
Get the value of the destination field
pub fn get_source(&self) -> MacAddr
[src]
Get the value of the source field
pub fn get_ethertype(&self) -> EtherType
[src]
Get the value of the ethertype field
pub fn set_destination(&mut self, val: MacAddr)
[src]
Set the value of the destination field.
pub fn set_source(&mut self, val: MacAddr)
[src]
Set the value of the source field.
pub fn set_ethertype(&mut self, val: EtherType)
[src]
Set the value of the ethertype field.
pub fn set_payload(&mut self, vals: &[u8])
[src]
Set the value of the payload field (copies contents)
Trait Implementations
impl<'p> Debug for MutableEthernetPacket<'p>
[src]
impl<'p> Debug for MutableEthernetPacket<'p>
[src]impl<'p> FromPacket for MutableEthernetPacket<'p>
[src]
impl<'p> FromPacket for MutableEthernetPacket<'p>
[src]impl<'a> MutablePacket for MutableEthernetPacket<'a>
[src]
impl<'a> MutablePacket for MutableEthernetPacket<'a>
[src]pub fn packet_mut(&'p mut self) -> &'p mut [u8]
[src]
pub fn payload_mut(&'p mut self) -> &'p mut [u8]
[src]
pub fn clone_from<T>(&mut self, other: &T) where
T: Packet,
T: Packet,
impl<'a> Packet for MutableEthernetPacket<'a>
[src]
impl<'a> Packet for MutableEthernetPacket<'a>
[src]impl<'a> PacketSize for MutableEthernetPacket<'a>
[src]
impl<'a> PacketSize for MutableEthernetPacket<'a>
[src]pub fn packet_size(&self) -> usize
[src]
impl<'p> PartialEq<MutableEthernetPacket<'p>> for MutableEthernetPacket<'p>
[src]
impl<'p> PartialEq<MutableEthernetPacket<'p>> for MutableEthernetPacket<'p>
[src]pub fn eq(&self, other: &MutableEthernetPacket<'p>) -> bool
[src]
pub fn ne(&self, other: &MutableEthernetPacket<'p>) -> bool
[src]
impl<'p> StructuralPartialEq for MutableEthernetPacket<'p>
[src]
impl<'p> StructuralPartialEq for MutableEthernetPacket<'p>
[src]Auto Trait Implementations
impl<'p> RefUnwindSafe for MutableEthernetPacket<'p>
impl<'p> RefUnwindSafe for MutableEthernetPacket<'p>
impl<'p> Send for MutableEthernetPacket<'p>
impl<'p> Send for MutableEthernetPacket<'p>
impl<'p> Sync for MutableEthernetPacket<'p>
impl<'p> Sync for MutableEthernetPacket<'p>
impl<'p> Unpin for MutableEthernetPacket<'p>
impl<'p> Unpin for MutableEthernetPacket<'p>
impl<'p> !UnwindSafe for MutableEthernetPacket<'p>
impl<'p> !UnwindSafe for MutableEthernetPacket<'p>
Blanket Implementations
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,