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