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