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