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> {}
}