docx_reader/documents/elements/
footer_reference.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use serde::Serialize;

#[derive(Debug, Clone, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct FooterReference {
	pub footer_type: String,
	pub id: String,
}

impl FooterReference {
	pub fn new(t: impl Into<String>, id: impl Into<String>) -> FooterReference {
		FooterReference {
			footer_type: t.into(),
			id: id.into(),
		}
	}
}