We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 377d3e9 commit aec5588Copy full SHA for aec5588
src/protocol.rs
@@ -32,8 +32,8 @@ impl ProtocolHandler for Docs {
32
#[derive(Debug, Clone)]
33
pub struct Docs {
34
engine: Arc<Engine>,
35
- #[cfg(feature = "rpc")]
36
- pub(crate) rpc_handler: Arc<std::sync::OnceLock<crate::rpc::RpcHandler>>,
+ // #[cfg(feature = "rpc")]
+ // pub(crate) rpc_handler: Arc<std::sync::OnceLock<crate::rpc::RpcHandler>>,
37
}
38
39
impl Docs {
@@ -65,8 +65,8 @@ impl Docs {
65
pub fn new(engine: Engine) -> Self {
66
Self {
67
engine: Arc::new(engine),
68
69
- rpc_handler: Default::default(),
+ // rpc_handler: Default::default(),
70
71
72
0 commit comments