Struct readwise::Book[][src]

pub struct Book {
    pub id: i64,
    pub title: String,
    pub author: Option<String>,
    pub category: String,
    pub num_highlights: i64,
    pub last_highlighted_at: Option<String>,
    pub updated: String,
    pub cover_image_url: String,
    pub highlights_url: String,
    pub source_url: Option<String>,
}

An individual book

Fields

id: i64title: Stringauthor: Option<String>category: Stringnum_highlights: i64last_highlighted_at: Option<String>updated: Stringcover_image_url: Stringhighlights_url: Stringsource_url: Option<String>

Trait Implementations

impl Default for Book[src]

impl<'de> Deserialize<'de> for Book[src]

impl Serialize for Book[src]

Auto Trait Implementations

impl RefUnwindSafe for Book

impl Send for Book

impl Sync for Book

impl Unpin for Book

impl UnwindSafe for Book

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.