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