use super::prelude::*; #[derive(Debug)] pub struct qRcmd<'a> { pub hex_cmd: &'a [u8], } impl<'a> ParseCommand<'a> for qRcmd<'a> { #[inline(always)] fn from_packet(buf: PacketBuf<'a>) -> Option { crate::__dead_code_marker!("qRcmd", "from_packet"); let body = buf.into_body(); match body { [] => Some(qRcmd { hex_cmd: &[] }), [b',', hex_cmd @ ..] => Some(qRcmd { hex_cmd: decode_hex_buf(hex_cmd).ok()?, }), _ => None, } } }