1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![deny(missing_docs)] #![doc = include_str!("../README.md")] mod generated; pub use self::generated::*; /// A pointer and length pair for a UTF-8 string. #[repr(C)] #[allow(missing_docs)] pub struct AllocatedString { pub pointer: *mut u8, pub len: usize, }