Lines Matching full:place
11 struct Place { struct
26 place: Place, field
47 assert_eq!(s.place.name, "Torre di Pisa"); in test_file()
48 assert!(s.place.longitude.approx_eq_ulps(&43.722_498_5, 2)); in test_file()
49 assert!(s.place.latitude.approx_eq_ulps(&10.397_052_2, 2)); in test_file()
50 assert!(!s.place.favorite); in test_file()
51 assert_eq!(s.place.reviews, 3866); in test_file()
52 assert_eq!(s.place.rating, Some(4.5)); in test_file()
53 assert_eq!(s.place.telephone, None); in test_file()
58 s.place in test_file()
70 s.place.creator["name"].clone().into_string().unwrap(), in test_file()