Sign in
android
/
platform
/
external
/
rust
/
crates
/
gdbstub
/
c74d98e894f292568da8efb3c2e9a9848e502fa8
/
.
/
src
/
protocol
/
commands
/
_qC.rs
blob: decba1257851247284ea0f3beab048b48206678e [
file
] [
log
] [
blame
]
use
super
::
prelude
::*;
#[
derive
(
Debug
)]
pub
struct
qC
;
impl
<
'a> ParseCommand<'
a
>
for
qC
{
#[
inline
(
always
)]
fn
from_packet
(
buf
:
PacketBuf
<
'
a
>)
->
Option
<
Self
>
{
if
!
buf
.
into_body
().
is_empty
()
{
return
None
;
}
Some
(
qC
)
}
}