pub trait VerifyReader<'a> {
// Required method
fn verify_checksum(&self) -> Result<(), &'static str>;
}
Expand description
Trait to verify the checksum of protocols encapsulated in IP packets.
Required Methods§
Sourcefn verify_checksum(&self) -> Result<(), &'static str>
fn verify_checksum(&self) -> Result<(), &'static str>
Verifies the checksum of the encapsulated protocol.