blob: 27dbe193b9eebe7569c7088ca0d13bf53fb4c05f (
plain)
1
2
3
4
5
6
7
|
//! Stub replacement for the rpc module when compiled without RPC support.
/// An uninhabited type, for use when constructing a proxy listener.
///
/// (This type _is_ inhabited when we're built with RPC support.)
#[cfg_attr(feature = "experimental-api", visibility::make(pub))]
pub(crate) enum RpcProxySupport {}
|