pub struct ProcEntry {
pub id: String,
pub marker: Option<String>,
pub template: ProcTemplate,
pub metadata: ProcEntryMetadata,
}Expand description
A processed bibliography entry.
Fields§
§id: StringThe reference ID.
marker: Option<String>The rendered reference marker this entry leads with, wrap and
label-separator already applied. None when the style declares no
marker. See docs/specs/REFERENCE_MARKERS.md.
template: ProcTemplateThe processed template components.
metadata: ProcEntryMetadataMetadata for interactivity (tooltips, etc.)
Trait Implementations§
impl StructuralPartialEq for ProcEntry
Auto Trait Implementations§
impl Freeze for ProcEntry
impl RefUnwindSafe for ProcEntry
impl Send for ProcEntry
impl Sync for ProcEntry
impl Unpin for ProcEntry
impl UnsafeUnpin for ProcEntry
impl UnwindSafe for ProcEntry
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