mojo-rs-c-api 0.2.0

Export of the compatible public Mojo C System ABI (epoch 1), built on mojo-rs-core. No panic may cross the ABI boundary.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # mojo-rs-c-api
//!
//! Export of the compatible public Mojo C System ABI (epoch 1). No panic may
//! cross the ABI boundary; every export is wrapped in panic containment.
#![deny(unsafe_op_in_unsafe_fn)]
#![deny(missing_docs)]

pub mod containment;
pub mod symbols;
pub mod types;
pub mod versioning;