pub struct Reference {
pub key: String,
pub id: String,
pub type_: String,
pub title: String,
pub publisher: String,
pub publication_year: String,
pub volume: String,
pub issue: String,
pub first_page: String,
pub last_page: String,
pub unstructured: String,
pub asserted_by: String,
}Expand description
first_page/last_page keep the Go source’s snake_case JSON tags.
Fields§
§key: String§id: String§type_: String§title: String§publisher: String§publication_year: String§volume: String§issue: String§first_page: String§last_page: String§unstructured: String§asserted_by: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Reference
impl<'de> Deserialize<'de> for Reference
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
impl StructuralPartialEq for Reference
Auto Trait Implementations§
impl Freeze for Reference
impl RefUnwindSafe for Reference
impl Send for Reference
impl Sync for Reference
impl Unpin for Reference
impl UnsafeUnpin for Reference
impl UnwindSafe for Reference
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