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