uddf-sdk 0.2.0

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

/// Represents a contact.
///
/// https://www.streit.cc/extern/uddf_v321/en/contact.html
#[derive(Debug, Serialize)]
pub struct Contact {
    /// Homepage URL.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub homepage: Option<String>,
}