pub struct ReadingLogWork {
pub key: String,
pub title: Option<String>,
pub author_names: Option<Vec<String>>,
pub cover_id: Option<i64>,
pub cover_edition_key: Option<String>,
pub first_publish_year: Option<i32>,
}Expand description
The work referenced in a reading-log entry.
Fields§
§key: String§title: Option<String>§cover_id: Option<i64>§cover_edition_key: Option<String>§first_publish_year: Option<i32>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 (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 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 UnsafeUnpin 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