#[derive(Clone, Copy, Debug, Default, Eq, PartialEq)]
pub struct PingHeader;
impl PingHeader {
#[must_use]
pub const fn new() -> Self {
Self
}
}
#[derive(Clone, Copy, Debug, Default, Eq, PartialEq)]
pub struct PongHeader;
impl PongHeader {
#[must_use]
pub const fn new() -> Self {
Self
}
}