An optimized `Zeroize<Z>` impl exists for slices where `Z: DefaultIsZeros`. It would be nice if custom derive could leverage it by obtaining a mutable slice of a field, e.g. via the `AsMut` trait: ```rust #[zeroize(as_mut)] field: Vec<u8>, ```