Add doc comments

- Doc comments in module `coord`
This commit is contained in:
Candifloss 2025-10-10 00:47:59 +05:30
parent 0955e96aef
commit 4d9a7c0527

View File

@ -12,7 +12,10 @@ use serde::{Deserialize, Serialize};
/// ```
#[derive(Debug, Clone, Deserialize, Serialize, Default, PartialEq)]
pub struct Coord {
/// Longitude
pub lon: f64,
/// Latitude
pub lat: f64,
}