[][src]Module safer_ffi::string

Rust string types with a defined #[repr(C)] layout, albeit not char * compatible (fat pointers).

Structs

Stringfeature="alloc"

Same as String, but with guaranteed #[repr(C)] layout

str_boxedfeature="alloc"

Same as Box<str>, but with a guaranteed #[repr(C)] layout.

str_ref

&'lt str, but with a guaranteed #[repr(C)] layout.