smhi 0.1.3

A library for integrating with SMHI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
pub struct Link {
    pub rel: String,

    pub r#type: String,

    pub href: String,
}