Lines Matching defs:got
836 let got: Foo = in with_header() localVariable
877 let got: Foo = de_headers(&["y", "z"], &["42", "1.3"]).unwrap(); in with_header_missing_ok() localVariable
890 let got = de_headers::<Foo>(&["y", "z"], &[]); in with_header_no_fields() localVariable
903 let got = de_headers::<Foo>(&[], &[]); in with_header_empty() localVariable
915 let got = de_headers::<Foo>(&[], &[]); in with_header_empty_ok() localVariable
918 let got = de_headers::<Bar>(&[], &[]); in with_header_empty_ok() localVariable
921 let got = de_headers::<()>(&[], &[]); in with_header_empty_ok() localVariable
934 let got: Foo = de(&["1.3", "42", "hi"]).unwrap(); in without_header() localVariable
945 let got: i32 = de(&["42"]).unwrap(); in one_field() localVariable
952 let got: i128 = de(&["2010223372036854775808"]).unwrap(); localVariable
959 let got: (i32, bool) = de(&["42", "true"]).unwrap(); in two_fields() localVariable
965 let got: Foo = de(&["42", "true"]).unwrap(); in two_fields() localVariable
971 let got: (i32, bool) = de(&["42", "true", "z", "z"]).unwrap(); in two_fields_too_many() localVariable
982 let got: char = de(&["a"]).unwrap(); in one_char() localVariable
998 let got: Vec<i32> = de(&["1", "5", "10"]).unwrap(); in simple_seq() localVariable
1004 let got: Vec<i32> = de(&["0x7F", "0xA9", "0x10"]).unwrap(); in simple_hex_seq() localVariable
1010 let got: Vec<i32> = de(&["0x7F", "0xA9", "10"]).unwrap(); in mixed_hex_seq() localVariable
1025 let got: Foo = de(&["1", "5", "10"]).unwrap(); in seq_in_struct() localVariable
1036 let got: Foo = de(&["foo", "1", "5", "10"]).unwrap(); in seq_in_struct_tail() localVariable
1042 let got: HashMap<String, i32> = in map_headers() localVariable
1052 let got = de::<HashMap<String, i32>>(&["1", "5", "10"]); in map_no_headers() localVariable
1058 let got: Vec<u8> = de::<BString>(&["foobar"]).unwrap().into(); in bytes() localVariable
1064 let got: ([u32; 2], [u32; 2]) = de(&["1", "5", "10", "15"]).unwrap(); in adjacent_fixed_arrays() localVariable
1084 let got: Row = de_headers(&["label", "x"], &["bar", "5"]).unwrap(); in enum_label_simple_tagged() localVariable
1106 let got: Row = in enum_untagged() localVariable
1127 let got: Foo = in option_empty_field() localVariable
1144 let got: Foo = in option_invalid_field() localVariable
1160 let got: Foo = in borrowed() localVariable
1171 let got: HashMap<&str, &str> = in borrowed_map() localVariable
1185 let got: HashMap<&[u8], &[u8]> = in borrowed_map_bytes() localVariable
1217 let got: Row = record.deserialize(Some(&header)).unwrap(); in flatten() localVariable
1239 let got: Row = in partially_invalid_utf8() localVariable