pub struct InputBibliographyInfo {
pub title: Option<String>,
pub author: Option<String>,
}Expand description
Metadata for an input bibliography.
Fields§
§title: Option<String>Human-readable title for the bibliography dataset.
Creator or maintainer of the bibliography dataset.
Trait Implementations§
Source§impl Clone for InputBibliographyInfo
impl Clone for InputBibliographyInfo
Source§fn clone(&self) -> InputBibliographyInfo
fn clone(&self) -> InputBibliographyInfo
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 InputBibliographyInfo
impl Debug for InputBibliographyInfo
Source§impl Default for InputBibliographyInfo
impl Default for InputBibliographyInfo
Source§fn default() -> InputBibliographyInfo
fn default() -> InputBibliographyInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InputBibliographyInfo
impl<'de> Deserialize<'de> for InputBibliographyInfo
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 InputBibliographyInfo
impl RefUnwindSafe for InputBibliographyInfo
impl Send for InputBibliographyInfo
impl Sync for InputBibliographyInfo
impl Unpin for InputBibliographyInfo
impl UnsafeUnpin for InputBibliographyInfo
impl UnwindSafe for InputBibliographyInfo
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