• Home
  • Raw
  • Download

Lines Matching defs:got

839         let got: Foo =  in with_header()  localVariable
880 let got: Foo = de_headers(&["y", "z"], &["42", "1.3"]).unwrap(); in with_header_missing_ok() localVariable
893 let got = de_headers::<Foo>(&["y", "z"], &[]); in with_header_no_fields() localVariable
906 let got = de_headers::<Foo>(&[], &[]); in with_header_empty() localVariable
918 let got = de_headers::<Foo>(&[], &[]); in with_header_empty_ok() localVariable
921 let got = de_headers::<Bar>(&[], &[]); in with_header_empty_ok() localVariable
924 let got = de_headers::<()>(&[], &[]); in with_header_empty_ok() localVariable
937 let got: Foo = de(&["1.3", "42", "hi"]).unwrap(); in without_header() localVariable
948 let got: i32 = de(&["42"]).unwrap(); in one_field() localVariable
955 let got: i128 = de(&["2010223372036854775808"]).unwrap(); localVariable
962 let got: (i32, bool) = de(&["42", "true"]).unwrap(); in two_fields() localVariable
968 let got: Foo = de(&["42", "true"]).unwrap(); in two_fields() localVariable
974 let got: (i32, bool) = de(&["42", "true", "z", "z"]).unwrap(); in two_fields_too_many() localVariable
985 let got: char = de(&["a"]).unwrap(); in one_char() localVariable
1001 let got: Vec<i32> = de(&["1", "5", "10"]).unwrap(); in simple_seq() localVariable
1007 let got: Vec<i32> = de(&["0x7F", "0xA9", "0x10"]).unwrap(); in simple_hex_seq() localVariable
1013 let got: Vec<i32> = de(&["0x7F", "0xA9", "10"]).unwrap(); in mixed_hex_seq() localVariable
1028 let got: Foo = de(&["1", "5", "10"]).unwrap(); in seq_in_struct() localVariable
1039 let got: Foo = de(&["foo", "1", "5", "10"]).unwrap(); in seq_in_struct_tail() localVariable
1045 let got: HashMap<String, i32> = in map_headers() localVariable
1055 let got = de::<HashMap<String, i32>>(&["1", "5", "10"]); in map_no_headers() localVariable
1061 let got: Vec<u8> = de::<BString>(&["foobar"]).unwrap().into(); in bytes() localVariable
1067 let got: ([u32; 2], [u32; 2]) = de(&["1", "5", "10", "15"]).unwrap(); in adjacent_fixed_arrays() localVariable
1087 let got: Row = de_headers(&["label", "x"], &["bar", "5"]).unwrap(); in enum_label_simple_tagged() localVariable
1109 let got: Row = in enum_untagged() localVariable
1130 let got: Foo = in option_empty_field() localVariable
1147 let got: Foo = in option_invalid_field() localVariable
1163 let got: Foo = in borrowed() localVariable
1174 let got: HashMap<&str, &str> = in borrowed_map() localVariable
1188 let got: HashMap<&[u8], &[u8]> = in borrowed_map_bytes() localVariable
1220 let got: Row = record.deserialize(Some(&header)).unwrap(); in flatten() localVariable
1242 let got: Row = in partially_invalid_utf8() localVariable