Expand description
Contains functionality related to PVFs that is shared by the PVF host and the PVF workers.
Re-exports§
pub use sp_tracing;
Modules§
- Interface to the Substrate Executor
- Functionality common to both prepare and execute workers.
- Shared functions for getting the known worker files.
Macros§
- Use this macro to declare a
fn main() {}
that will create an executable that can be used for spawning the desired worker.
Structs§
- CPU Time Used by The Whole Process
- Status of security features on the current system.
- A handshake with information for the worker.
Functions§
- Read some data prefixed by its length from
r
. Sync version offramed_recv
to avoid dependency on tokio. - Write some data prefixed by its length into
w
. Sync version offramed_send
to avoid dependency on tokio.