5 lines
88 B
Rust
5 lines
88 B
Rust
|
#[derive(Debug, Copy, Clone)]
|
||
|
pub struct LatLong {
|
||
|
pub lat: f64,
|
||
|
pub long: f64
|
||
|
}
|