uddf-sdk 0.2.1

Reading and writing UDDF files
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::Serialize;

/// Represents the link.
///
/// https://www.streit.cc/extern/uddf_v321/en/link.html
#[derive(Debug, Serialize)]
pub struct Link {
    #[serde(rename = "@ref")]
    pub reference: String,
}