Hello, Is it possible to add, or is there a workaround for creating an Arbitrary type that has a borrow that's _not_ `&'a [u8]`. For example: ```rust struct HasBorrow<'a> { borrow: &'a [u64], } ``` Cheers