pub struct PdgReference {
pub document_id: String,
pub publication_name: Option<String>,
pub publication_year: Option<isize>,
pub doi: Option<String>,
pub inspire_id: Option<String>,
pub title: Option<String>,
}Expand description
Bibliographic reference for a PDG measurement.
Fields§
§document_id: StringPDG document identifier.
publication_name: Option<String>Publication venue or collaboration name, when available.
publication_year: Option<isize>Publication year, when available.
doi: Option<String>Digital object identifier, when available.
inspire_id: Option<String>INSPIRE record identifier, when available.
title: Option<String>Publication title, when available.
Trait Implementations§
Source§impl Clone for PdgReference
impl Clone for PdgReference
Source§fn clone(&self) -> PdgReference
fn clone(&self) -> PdgReference
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 moreAuto Trait Implementations§
impl Freeze for PdgReference
impl RefUnwindSafe for PdgReference
impl Send for PdgReference
impl Sync for PdgReference
impl Unpin for PdgReference
impl UnsafeUnpin for PdgReference
impl UnwindSafe for PdgReference
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