1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! Geographic Address Example //! use tmflib::tmf673::geographic_address::GeographicAddress; fn main() { let address = GeographicAddress::new("Site 1") .number("5") .street("Roseland") .street_type("Avenue") .suburb("Norhtshore") .state("NSW"); dbg!(address); }