jlrs 0.23.0

jlrs provides bindings to the Julia C API that enable Julia code to be called from Rust and more.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Traits for converting data.

pub mod ccall_types;
pub mod compatible;
pub mod into_julia;
pub mod into_simple_vector;
#[cfg(feature = "jlrs-ndarray")]
pub mod ndarray;
pub mod to_symbol;
pub mod unbox;