pub struct Footer {
pub signatures: Option<Signatures>,
pub citations: Option<Citations>,
pub annotations: Option<Annotations>,
}Expand description
Document footer
Fields§
§signatures: Option<Signatures>Digital signatures container
citations: Option<Citations>Bibliographic references container
annotations: Option<Annotations>Notes and commentary container
Implementations§
Sourcepub fn with_signatures(self, signatures: Signatures) -> Self
pub fn with_signatures(self, signatures: Signatures) -> Self
Add signatures
Sourcepub fn with_citations(self, citations: Citations) -> Self
pub fn with_citations(self, citations: Citations) -> Self
Add citations
Sourcepub fn with_annotations(self, annotations: Annotations) -> Self
pub fn with_annotations(self, annotations: Annotations) -> Self
Add annotations
Trait Implementations§
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more