pub struct Info {
pub id: Option<String>,
pub title: Option<String>,
pub links: Vec<InfoLink>,
pub categories: Vec<InfoCategory>,
pub authors: Vec<InfoContributor>,
pub contributors: Vec<InfoContributor>,
pub updated: Option<String>,
pub issn: Vec<String>,
}Expand description
Style metadata (<info>). Only the commonly-needed fields are modelled.
Fields§
§id: Option<String><id>; the stable style identifier.
title: Option<String><title>; the human-facing style name.
links: Vec<InfoLink><link> entries, including dependent-style rel="independent-parent".
categories: Vec<InfoCategory><category> entries describing citation format or field.
<author> entries.
contributors: Vec<InfoContributor><contributor> entries.
updated: Option<String><updated> timestamp text.
issn: Vec<String><issn> values.
Trait Implementations§
impl Eq for Info
impl StructuralPartialEq for Info
Auto Trait Implementations§
impl Freeze for Info
impl RefUnwindSafe for Info
impl Send for Info
impl Sync for Info
impl Unpin for Info
impl UnsafeUnpin for Info
impl UnwindSafe for Info
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