Lines Matching refs:Unstructured
33 pub use unstructured::Unstructured;
171 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>; in arbitrary()
178 fn arbitrary_take_rest(mut u: Unstructured<'a>) -> Result<Self> { in arbitrary_take_rest()
262 fn arbitrary(_: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
273 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
287 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> {
327 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> {
346 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
369 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
380 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
391 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
413 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> {
490 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
507 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
525 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
551 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> {
556 fn arbitrary_take_rest(mut u: Unstructured<'a>) -> Result<Self> {
579 fn arbitrary(u: &mut Unstructured<'a>) -> Result<[T; $n]> {
587 fn arbitrary_take_rest(mut u: Unstructured<'a>) -> Result<[T; $n]> {
609 fn arbitrary(_: &mut Unstructured<'a>) -> Result<[T; 0]> { in arbitrary()
613 fn arbitrary_take_rest(_: Unstructured<'a>) -> Result<[T; 0]> { in arbitrary_take_rest()
630 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
635 fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self> { in arbitrary_take_rest()
646 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
650 fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self> { in arbitrary_take_rest()
661 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
665 fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self> { in arbitrary_take_rest()
676 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
680 fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self> { in arbitrary_take_rest()
691 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
695 fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self> { in arbitrary_take_rest()
708 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
712 fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self> { in arbitrary_take_rest()
723 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
727 fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self> { in arbitrary_take_rest()
738 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
742 fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self> { in arbitrary_take_rest()
753 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
757 fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self> { in arbitrary_take_rest()
772 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
785 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
804 fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self> { in arbitrary_take_rest()
818 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
822 fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self> { in arbitrary_take_rest()
833 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
847 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
858 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
869 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
880 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
891 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
915 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
926 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
937 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
948 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
959 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
970 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
981 fn arbitrary(_: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
992 fn arbitrary(_: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
1003 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { in arbitrary()
1020 let mut rb = Unstructured::new(&x); in finite_buffer_fill_buffer()
1033 let mut buf = Unstructured::new(&x); in arbitrary_for_integers()
1042 let mut buf = Unstructured::new(&x); in arbitrary_for_bytes()
1051 let buf = Unstructured::new(&x); in arbitrary_take_rest_for_bytes()
1063 Vec::<u8>::arbitrary(&mut Unstructured::new(&x)).unwrap(), in arbitrary_collection()
1067 Vec::<u32>::arbitrary(&mut Unstructured::new(&x)).unwrap(), in arbitrary_collection()
1071 String::arbitrary(&mut Unstructured::new(&x)).unwrap(), in arbitrary_collection()
1080 Vec::<u8>::arbitrary_take_rest(Unstructured::new(&x)).unwrap(), in arbitrary_take_rest()
1084 Vec::<u32>::arbitrary_take_rest(Unstructured::new(&x)).unwrap(), in arbitrary_take_rest()
1088 String::arbitrary_take_rest(Unstructured::new(&x)).unwrap(), in arbitrary_take_rest()