pub struct EntryMetadata {
pub author: String,
pub year: String,
pub title: String,
}Expand description
Metadata extracted from a bibliography entry for interactivity.
Fields§
Rendered author(s) string.
year: StringRendered year string.
title: StringRendered title string.
Trait Implementations§
Source§impl Clone for EntryMetadata
impl Clone for EntryMetadata
Source§fn clone(&self) -> EntryMetadata
fn clone(&self) -> EntryMetadata
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 EntryMetadata
impl Debug for EntryMetadata
Source§impl Default for EntryMetadata
impl Default for EntryMetadata
Source§fn default() -> EntryMetadata
fn default() -> EntryMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EntryMetadata
impl<'de> Deserialize<'de> for EntryMetadata
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 EntryMetadata
impl RefUnwindSafe for EntryMetadata
impl Send for EntryMetadata
impl Sync for EntryMetadata
impl Unpin for EntryMetadata
impl UnsafeUnpin for EntryMetadata
impl UnwindSafe for EntryMetadata
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