Struct etherparse::SlicedPacket [−][src]
pub struct SlicedPacket<'a> {
pub link: Option<LinkSlice<'a>>,
pub vlan: Option<VlanSlice<'a>>,
pub ip: Option<InternetSlice<'a>>,
pub transport: Option<TransportSlice<'a>>,
pub payload: &'a [u8],
}Fields
link: Option<LinkSlice<'a>>
vlan: Option<VlanSlice<'a>>
ip: Option<InternetSlice<'a>>
transport: Option<TransportSlice<'a>>
payload: &'a [u8]
The payload field points to the rest of the packet that could not be parsed by etherparse.
Depending on what other fields contain a "Some" values the payload contains the corresponding payload.
For example if transport field contains Some(Udp(_)) then the payload field points to the udp payload. On the other hand if the transport field contains None then the payload contains the payload of next field containing a Some value (in order of transport, ip, vlan, link).
Methods
impl<'a> SlicedPacket<'a>[src]
impl<'a> SlicedPacket<'a>pub fn from_ethernet(data: &'a [u8]) -> Result<SlicedPacket, ReadError>[src]
pub fn from_ethernet(data: &'a [u8]) -> Result<SlicedPacket, ReadError>Trait Implementations
impl<'a> Clone for SlicedPacket<'a>[src]
impl<'a> Clone for SlicedPacket<'a>fn clone(&self) -> SlicedPacket<'a>[src]
fn clone(&self) -> SlicedPacket<'a>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl<'a> Debug for SlicedPacket<'a>[src]
impl<'a> Debug for SlicedPacket<'a>fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<'a> Eq for SlicedPacket<'a>[src]
impl<'a> Eq for SlicedPacket<'a>impl<'a> PartialEq for SlicedPacket<'a>[src]
impl<'a> PartialEq for SlicedPacket<'a>fn eq(&self, other: &SlicedPacket<'a>) -> bool[src]
fn eq(&self, other: &SlicedPacket<'a>) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &SlicedPacket<'a>) -> bool[src]
fn ne(&self, other: &SlicedPacket<'a>) -> boolThis method tests for !=.
Auto Trait Implementations
impl<'a> Send for SlicedPacket<'a>
impl<'a> Send for SlicedPacket<'a>impl<'a> Sync for SlicedPacket<'a>
impl<'a> Sync for SlicedPacket<'a>