abi_stable 0.9.0

For doing Rust-to-Rust ffi,writing libraries loaded at program startup.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Passes the tokens through as well as defines a constant with the stringified tokens.
#[allow(unused_macros)]
macro_rules! and_stringify {
    (
        $vis:vis const $stringified_name:ident;
        $( $cosmos:tt )*
    ) => (
        $vis const $stringified_name:&'static str=stringify!($( $cosmos )*);

        $( $cosmos )*
    )
}