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