pub struct VolumeRecord {
pub url: Option<String>,
pub key: Option<String>,
pub title: Option<String>,
pub authors: Option<Vec<VolumeAuthor>>,
pub cover: Option<VolumeCover>,
pub identifiers: Option<Value>,
pub classifications: Option<Value>,
pub publishers: Option<Vec<NamedEntity>>,
pub publish_date: Option<String>,
pub subjects: Option<Vec<NamedEntity>>,
}Expand description
Bibliographic record for one book in a volumes response.
Fields§
§url: Option<String>§key: Option<String>§title: Option<String>§cover: Option<VolumeCover>§identifiers: Option<Value>§classifications: Option<Value>§publishers: Option<Vec<NamedEntity>>§publish_date: Option<String>§subjects: Option<Vec<NamedEntity>>Trait Implementations§
Source§impl Clone for VolumeRecord
impl Clone for VolumeRecord
Source§fn clone(&self) -> VolumeRecord
fn clone(&self) -> VolumeRecord
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 VolumeRecord
impl Debug for VolumeRecord
Source§impl<'de> Deserialize<'de> for VolumeRecord
impl<'de> Deserialize<'de> for VolumeRecord
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 VolumeRecord
impl RefUnwindSafe for VolumeRecord
impl Send for VolumeRecord
impl Sync for VolumeRecord
impl Unpin for VolumeRecord
impl UnsafeUnpin for VolumeRecord
impl UnwindSafe for VolumeRecord
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