pub struct BibliographyEntry {
pub id: String,
pub text: String,
pub metadata: EntryMetadata,
}Expand description
A single bibliography entry.
Fields§
§id: StringThe reference ID.
text: StringThe formatted entry text.
metadata: EntryMetadataExtracted metadata for interactivity.
Trait Implementations§
Source§impl Clone for BibliographyEntry
impl Clone for BibliographyEntry
Source§fn clone(&self) -> BibliographyEntry
fn clone(&self) -> BibliographyEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BibliographyEntry
impl Debug for BibliographyEntry
Source§impl<'de> Deserialize<'de> for BibliographyEntry
impl<'de> Deserialize<'de> for BibliographyEntry
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§
impl Freeze for BibliographyEntry
impl RefUnwindSafe for BibliographyEntry
impl Send for BibliographyEntry
impl Sync for BibliographyEntry
impl Unpin for BibliographyEntry
impl UnsafeUnpin for BibliographyEntry
impl UnwindSafe for BibliographyEntry
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