cjaggerx 0.1.1

Rust bindings for the CJaggerX library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod string;

pub mod traits {
    pub trait Types {}
    impl Types for &std::ffi::CStr {}
    impl Types for std::ffi::CString {}
    impl Types for &std::ffi::CString {}
    impl Types for std::string::String {}
    impl Types for &std::string::String {}
    impl Types for str {}
    impl Types for &str {}
    impl Types for Vec<&std::ffi::CStr> {}
    impl Types for Vec<std::ffi::CString> {}
    impl Types for Vec<&std::ffi::CString> {}
    impl Types for Vec<std::string::String> {}
    impl Types for Vec<&std::string::String> {}
    impl Types for Vec<&str> {}
}