Struct google_books1::Review [] [src]

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

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

Resource type for a review.

Title for this review.

Author of this review.

Volume that this review is for.

Review text.

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

Date of this review.

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

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

Trait Implementations

impl Default for Review
[src]

Returns the "default value" for a type. Read more

impl Clone for Review
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Review
[src]

Formats the value using the given formatter.

impl Part for Review
[src]