uddf-sdk 0.2.0

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

/// Represents a last name.
///
/// https://www.streit.cc/extern/uddf_v321/en/lastname.html
#[derive(Debug, Serialize)]
pub struct LastName {
    #[serde(rename = "$text", skip_serializing_if = "Option::is_none")]
    pub value: Option<String>,
}