1 //! Implementations of [`Arbitrary`] for [`alloc`] types, 2 //! excluding those in [`core`]. 3 //! 4 //! [`Arbitrary`]: crate::Arbitrary 5 6 mod borrow; 7 mod boxed; 8 mod collections; 9 mod ffi; 10 mod rc; 11 mod string; 12 mod sync; 13 mod vec; 14