[][src]Struct google_books1::Review

pub struct Review {
    pub rating: Option<String>,
    pub kind: Option<String>,
    pub title: Option<String>,
    pub author: Option<ReviewAuthor>,
    pub volume_id: Option<String>,
    pub content: Option<String>,
    pub source: Option<ReviewSource>,
    pub date: Option<String>,
    pub type_: Option<String>,
    pub full_text_url: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

rating: Option<String>

Star rating for this review. Possible values are ONE, TWO, THREE, FOUR, FIVE or NOT_RATED.

kind: Option<String>

Resource type for a review.

title: Option<String>

Title for this review.

author: Option<ReviewAuthor>

Author of this review.

volume_id: Option<String>

Volume that this review is for.

content: Option<String>

Review text.

source: Option<ReviewSource>

Information regarding the source of this review, when the review is not from a Google Books user.

date: Option<String>

Date of this review.

type_: Option<String>

Source type for this review. Possible values are EDITORIAL, WEB_USER or GOOGLE_USER.

full_text_url: Option<String>

URL for the full review text, for reviews gathered from the web.

Trait Implementations

impl Clone for Review[src]

impl Debug for Review[src]

impl Default for Review[src]

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

impl Part for Review[src]

impl Serialize for Review[src]

Auto Trait Implementations

impl RefUnwindSafe for Review

impl Send for Review

impl Sync for Review

impl Unpin for Review

impl UnwindSafe for Review

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<T> Typeable for T where
    T: Any