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