You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sendable represents types of DAP messages that can be sent via JSON RPC, so it would be nice if we add Request in here, since dap-rs supports client-side code.
The text was updated successfully, but these errors were encountered:
The problem is that Sendable derives Serialize by default and Deserialize if client feature is on, and Request does vice versa. Either Request (and thus every other type) must derive 'Serialize' by default or we must include Request variant in client feature, which looks pretty confusing because essentially Requestis a sendable message
Sendable
represents types of DAP messages that can be sent via JSON RPC, so it would be nice if we addRequest
in here, sincedap-rs
supports client-side code.The text was updated successfully, but these errors were encountered: