pub const fn sunny() -> &'static str {
""
}
pub const fn cloudy() -> &'static str {
""
}
pub const fn partly_cloudy_day() -> &'static str {
""
}
pub const fn partly_cloudy_night() -> &'static str {
""
}
pub const fn rain() -> &'static str {
""
}
pub const fn heavy_rain() -> &'static str {
""
}
pub const fn thunderstorm() -> &'static str {
""
}
pub const fn snow() -> &'static str {
""
}
pub const fn fog() -> &'static str {
""
}
pub const fn wind() -> &'static str {
""
}
pub const fn tornado() -> &'static str {
""
}
pub const fn hurricane() -> &'static str {
""
}
pub const fn night() -> &'static str {
""
}
pub const fn sunrise() -> &'static str {
""
}
pub const fn sunset() -> &'static str {
""
}
pub const fn thermometer() -> &'static str {
""
}
pub const fn humidity() -> &'static str {
""
}
pub const fn barometer() -> &'static str {
""
}
pub const fn umbrella() -> &'static str {
""
}
pub const fn snowflake() -> &'static str {
""
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_weather_icons() {
assert_eq!(sunny(), "");
assert_eq!(rain(), "");
assert_eq!(snow(), "");
}
}