[][src]Struct google_blogger3::Page

pub struct Page {
    pub status: Option<String>,
    pub blog: Option<PageBlog>,
    pub kind: Option<String>,
    pub title: Option<String>,
    pub url: Option<String>,
    pub author: Option<PageAuthor>,
    pub updated: Option<String>,
    pub content: Option<String>,
    pub etag: Option<String>,
    pub published: Option<String>,
    pub id: Option<String>,
    pub self_link: Option<String>,
}

There is no detailed description.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

status: Option<String>

The status of the page for admin resources (either LIVE or DRAFT).

blog: Option<PageBlog>

Data about the blog containing this Page.

kind: Option<String>

The kind of this entity. Always blogger#page

title: Option<String>

The title of this entity. This is the name displayed in the Admin user interface.

url: Option<String>

The URL that this Page is displayed at.

author: Option<PageAuthor>

The author of this Page.

updated: Option<String>

RFC 3339 date-time when this Page was last updated.

content: Option<String>

The body content of this Page, in HTML.

etag: Option<String>

Etag of the resource.

published: Option<String>

RFC 3339 date-time when this Page was published.

id: Option<String>

The identifier for this resource.

self_link: Option<String>

The API REST URL to fetch this resource from.

Trait Implementations

impl Resource for Page[src]

impl ResponseResult for Page[src]

impl RequestValue for Page[src]

impl Default for Page[src]

impl Clone for Page[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Page[src]

impl Serialize for Page[src]

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

Auto Trait Implementations

impl Send for Page

impl Unpin for Page

impl Sync for Page

impl UnwindSafe for Page

impl RefUnwindSafe for Page

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> 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.

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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