Lines Matching full:place
11 struct Place { struct
34 place: Place, field
57 assert_eq!(s.place.number, PlaceNumber(1)); in test_file()
58 assert_eq!(s.place.name, "Torre di Pisa"); in test_file()
59 assert!(s.place.longitude.approx_eq_ulps(&43.722_498_5, 2)); in test_file()
60 assert!(s.place.latitude.approx_eq_ulps(&10.397_052_2, 2)); in test_file()
61 assert!(!s.place.favorite); in test_file()
62 assert_eq!(s.place.reviews, 3866); in test_file()
63 assert_eq!(s.place.rating, Some(4.5)); in test_file()
64 assert_eq!(s.place.telephone, None); in test_file()
69 s.place in test_file()
81 s.place.creator["name"].clone().into_string().unwrap(), in test_file()