1use std::ffi::{CStr, c_char}; 2 3pub trait CStrLike { 4 fn as_ptr(&self) -> *const c_char; 5 fn as_cstr(&self) -> &CStr; 6}