Skip to main content

gdbstub/protocol/commands/
_qfThreadInfo.rs

1use super::prelude::*;
2
3#[derive(Debug)]
4pub struct qfThreadInfo;
5
6impl<'a> ParseCommand<'a> for qfThreadInfo {
7    #[inline(always)]
8    fn from_packet(buf: PacketBuf<'a>) -> Option<Self> {
9        if !buf.into_body().is_empty() {
10            return None;
11        }
12        Some(qfThreadInfo)
13    }
14}