blob: 8134be9c6fc19dbbe0929b67f273d86bf1eb146b [file] [log] [blame]
use super::prelude::*;
#[derive(Debug)]
pub struct g;
impl<'a> ParseCommand<'a> for g {
#[inline(always)]
fn from_packet(buf: PacketBuf<'a>) -> Option<Self> {
if !buf.into_body().is_empty() {
return None;
}
Some(g)
}
}