Struct pnet_packet::icmpv6::Icmpv6 [−][src]
pub struct Icmpv6 {
pub icmpv6_type: Icmpv6Type,
pub icmpv6_code: Icmpv6Code,
pub checksum: u16be,
pub payload: Vec<u8>,
}
Expand description
Represents a generic ICMPv6 packet RFC 4443 § 2.1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Code | Checksum |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
+ Message Body +
| |
Fields
icmpv6_type: Icmpv6Type
icmpv6_code: Icmpv6Code
checksum: u16be
payload: Vec<u8>
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Icmpv6
impl UnwindSafe for Icmpv6
Blanket Implementations
Mutably borrows from an owned value. Read more