Flag

Trait Flag 

Source
pub trait Flag {
    // Required method
    fn bitmask(&self) -> u8;
}
Expand description

A trait that all HTTP/2 frame header flags need to implement.

Required Methods§

Source

fn bitmask(&self) -> u8

Returns a bit mask that represents the flag.

Implementors§