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