pub struct ReadingLogWork {
pub title: String,
pub key: OpenLibraryResource,
pub author_keys: Vec<OpenLibraryResource>,
pub author_names: Vec<String>,
pub first_publish_year: Option<i32>,
pub lending_edition_s: Option<String>,
pub edition_key: Vec<String>,
pub cover_id: Option<i32>,
pub cover_edition_key: Option<String>,
}
Fields§
§title: String
§key: OpenLibraryResource
§first_publish_year: Option<i32>
§lending_edition_s: Option<String>
§edition_key: Vec<String>
§cover_id: Option<i32>
§cover_edition_key: Option<String>
Trait Implementations§
Source§impl Clone for ReadingLogWork
impl Clone for ReadingLogWork
Source§fn clone(&self) -> ReadingLogWork
fn clone(&self) -> ReadingLogWork
Returns a duplicate of the value. Read more
1.0.0 · 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 ReadingLogWork
impl Debug for ReadingLogWork
Source§impl<'de> Deserialize<'de> for ReadingLogWork
impl<'de> Deserialize<'de> for ReadingLogWork
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 ReadingLogWork
impl RefUnwindSafe for ReadingLogWork
impl Send for ReadingLogWork
impl Sync for ReadingLogWork
impl Unpin for ReadingLogWork
impl UnwindSafe for ReadingLogWork
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