1 // impl Arbitrary for Box<CStr> { 2 // fn arbitrary(u: &mut Unstructured<'_>) -> Result<Self> { 3 // <CString as Arbitrary>::arbitrary(u).map(|x| x.into_boxed_c_str()) 4 // } 5 // } 6