pyro-macro 0.2.1

Derive macros for Pyroduct
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Lifecycle function parsing and FFI generation
//!
//! This module handles the three required lifecycle functions:
//! - `new` - Initialize the server state
//! - `reset` - Reset the server state
//! - `new_client` - Register a new client

pub mod init;
pub mod new_client;
pub mod reset;

pub use init::InitFn;
pub use new_client::NewClientFn;
pub use reset::ResetFn;