pub struct BooksApiEntry {
pub bib_key: Option<String>,
pub info_url: Option<String>,
pub preview: Option<String>,
pub preview_url: Option<String>,
pub thumbnail_url: Option<String>,
pub details: Option<Value>,
pub data: Option<Value>,
}Expand description
Response from the /api/books bibkey lookup.
Fields§
§bib_key: Option<String>§info_url: Option<String>§preview: Option<String>§preview_url: Option<String>§thumbnail_url: Option<String>§details: Option<Value>§data: Option<Value>Trait Implementations§
Source§impl Clone for BooksApiEntry
impl Clone for BooksApiEntry
Source§fn clone(&self) -> BooksApiEntry
fn clone(&self) -> BooksApiEntry
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 BooksApiEntry
impl Debug for BooksApiEntry
Source§impl<'de> Deserialize<'de> for BooksApiEntry
impl<'de> Deserialize<'de> for BooksApiEntry
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 BooksApiEntry
impl RefUnwindSafe for BooksApiEntry
impl Send for BooksApiEntry
impl Sync for BooksApiEntry
impl Unpin for BooksApiEntry
impl UnsafeUnpin for BooksApiEntry
impl UnwindSafe for BooksApiEntry
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