Skip to main content

rings_node/extension/types/
mod.rs

1#![warn(missing_docs)]
2
3//! Backend message types.
4//!
5//! The old closed `BackendMessage` enum and its `MessageHandler` dispatch have been
6//! replaced by the namespaced [`Envelope`](crate::extension::ext::Envelope) wire and the
7//! [`Extensions`](crate::extension::ext::Extensions) protocol registry. Only the SNARK
8//! payload types remain here.
9
10#[cfg(feature = "snark")]
11pub mod snark;