Debug console tweaks (#29586)
Closes #ISSUE Release Notes: - N/A --------- Co-authored-by: Anthony Eid <hello@anthonyeid.me> Co-authored-by: Cole Miller <m@cole-miller.net>
This commit is contained in:
parent
2beefc8158
commit
ab180855de
4 changed files with 135 additions and 149 deletions
|
@ -14,7 +14,7 @@ use rpc::proto;
|
|||
use serde_json::Value;
|
||||
use util::ResultExt;
|
||||
|
||||
pub(crate) trait LocalDapCommand: 'static + Send + Sync + std::fmt::Debug {
|
||||
pub trait LocalDapCommand: 'static + Send + Sync + std::fmt::Debug {
|
||||
type Response: 'static + Send + std::fmt::Debug;
|
||||
type DapRequest: 'static + Send + dap::requests::Request;
|
||||
|
||||
|
@ -30,7 +30,7 @@ pub(crate) trait LocalDapCommand: 'static + Send + Sync + std::fmt::Debug {
|
|||
) -> Result<Self::Response>;
|
||||
}
|
||||
|
||||
pub(crate) trait DapCommand: LocalDapCommand {
|
||||
pub trait DapCommand: LocalDapCommand {
|
||||
type ProtoRequest: 'static + Send;
|
||||
type ProtoResponse: 'static + Send;
|
||||
const CACHEABLE: bool = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue