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