pub struct Bibliography {
pub layout: Layout,
pub sort: Vec<SortKey>,
pub options: BibliographyOptions,
}Expand description
The <bibliography> element: how bibliography entries are formatted.
This is the CSL style element, distinct from a bibliographic database
(mos_bib::Bibliography).
Fields§
§layout: LayoutThe required <layout>.
sort: Vec<SortKey><sort> keys, in priority order (empty when absent).
options: BibliographyOptionsBibliography-specific rendering options retained for a future processor.
Trait Implementations§
Source§impl Clone for Bibliography
impl Clone for Bibliography
Source§fn clone(&self) -> Bibliography
fn clone(&self) -> Bibliography
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Bibliography
impl Debug for Bibliography
Source§impl PartialEq for Bibliography
impl PartialEq for Bibliography
impl Eq for Bibliography
impl StructuralPartialEq for Bibliography
Auto Trait Implementations§
impl Freeze for Bibliography
impl RefUnwindSafe for Bibliography
impl Send for Bibliography
impl Sync for Bibliography
impl Unpin for Bibliography
impl UnsafeUnpin for Bibliography
impl UnwindSafe for Bibliography
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