Skip to main content

parser_new

Macro parser_new 

Source
macro_rules! parser_new {
    ($min_len:expr) => { ... };
}
Expand description

Generate a standard parser new() method with a minimum-length check.

Usage: parser_new!(UDP_HEADER_LEN); inside an impl<'a> FooPacket<'a> block where the struct has a buf: &'a [u8] field.