pub struct ProcessedReferences {
pub bibliography: Vec<ProcEntry>,
pub citations: Option<Vec<String>>,
}Expand description
Processed output containing citations and bibliography.
Fields§
§bibliography: Vec<ProcEntry>Rendered bibliography entries with metadata.
citations: Option<Vec<String>>Rendered citations as formatted strings.
None if no citations were processed; Some(vec) otherwise.
Trait Implementations§
Source§impl Debug for ProcessedReferences
impl Debug for ProcessedReferences
Source§impl Default for ProcessedReferences
impl Default for ProcessedReferences
Source§fn default() -> ProcessedReferences
fn default() -> ProcessedReferences
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProcessedReferences
impl RefUnwindSafe for ProcessedReferences
impl Send for ProcessedReferences
impl Sync for ProcessedReferences
impl Unpin for ProcessedReferences
impl UnsafeUnpin for ProcessedReferences
impl UnwindSafe for ProcessedReferences
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