Struct google_blogger3::api::Post

source ·
pub struct Post {
Show 20 fields pub author: Option<PostAuthor>, pub blog: Option<PostBlog>, pub content: Option<String>, pub custom_meta_data: Option<String>, pub etag: Option<String>, pub id: Option<String>, pub images: Option<Vec<PostImages>>, pub kind: Option<String>, pub labels: Option<Vec<String>>, pub location: Option<PostLocation>, pub published: Option<String>, pub reader_comments: Option<String>, pub replies: Option<PostReplies>, pub self_link: Option<String>, pub status: Option<String>, pub title: Option<String>, pub title_link: Option<String>, pub trashed: Option<String>, pub updated: Option<String>, pub url: Option<String>,
}
Expand description

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§

§author: Option<PostAuthor>

The author of this Post.

§blog: Option<PostBlog>

Data about the blog containing this Post.

§content: Option<String>

The content of the Post. May contain HTML markup.

§custom_meta_data: Option<String>

The JSON meta-data for the Post.

§etag: Option<String>

Etag of the resource.

§id: Option<String>

The identifier of this Post.

§images: Option<Vec<PostImages>>

Display image for the Post.

§kind: Option<String>

The kind of this entity. Always blogger#post.

§labels: Option<Vec<String>>

The list of labels this Post was tagged with.

§location: Option<PostLocation>

The location for geotagged posts.

§published: Option<String>

RFC 3339 date-time when this Post was published.

§reader_comments: Option<String>

Comment control and display setting for readers of this post.

§replies: Option<PostReplies>

The container of comments on this Post.

§self_link: Option<String>

The API REST URL to fetch this resource from.

§status: Option<String>

Status of the post. Only set for admin-level requests.

§title: Option<String>

The title of the Post.

§title_link: Option<String>

The title link URL, similar to atom’s related link.

§trashed: Option<String>

RFC 3339 date-time when this Post was last trashed.

§updated: Option<String>

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

§url: Option<String>

The URL where this Post is displayed.

Trait Implementations§

source§

impl Clone for Post

source§

fn clone(&self) -> Post

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Post

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Post

source§

fn default() -> Post

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Post

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for Post

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl RequestValue for Post

source§

impl Resource for Post

source§

impl ResponseResult for Post

Auto Trait Implementations§

§

impl RefUnwindSafe for Post

§

impl Send for Post

§

impl Sync for Post

§

impl Unpin for Post

§

impl UnwindSafe for Post

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

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