Struct google_blogger3::CommentMethods [] [src]

pub struct CommentMethods<'a, C, A> where
    C: 'a,
    A: 'a, 
{ /* fields omitted */ }

A builder providing access to all methods supported on comment resources. It is not used directly, but through the Blogger hub.

Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_blogger3 as blogger3;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use blogger3::Blogger;
 
let secret: ApplicationSecret = Default::default();
let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
                              hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())),
                              <MemoryStorage as Default>::default(), None);
let mut hub = Blogger::new(hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `approve(...)`, `delete(...)`, `get(...)`, `list(...)`, `list_by_blog(...)`, `mark_as_spam(...)` and `remove_content(...)`
// to build up your call.
let rb = hub.comments();

Methods

impl<'a, C, A> CommentMethods<'a, C, A>
[src]

Create a builder to help you perform the following task:

Gets one comment by ID.

Arguments

  • blogId - ID of the blog to containing the comment.
  • postId - ID of the post to fetch posts from.
  • commentId - The ID of the comment to get.

Create a builder to help you perform the following task:

Removes the content of a comment.

Arguments

  • blogId - The ID of the Blog.
  • postId - The ID of the Post.
  • commentId - The ID of the comment to delete content from.

Create a builder to help you perform the following task:

Retrieves the comments for a blog, across all posts, possibly filtered.

Arguments

  • blogId - ID of the blog to fetch comments from.

Create a builder to help you perform the following task:

Marks a comment as spam.

Arguments

  • blogId - The ID of the Blog.
  • postId - The ID of the Post.
  • commentId - The ID of the comment to mark as spam.

Create a builder to help you perform the following task:

Retrieves the comments for a post, possibly filtered.

Arguments

  • blogId - ID of the blog to fetch comments from.
  • postId - ID of the post to fetch posts from.

Create a builder to help you perform the following task:

Marks a comment as not spam.

Arguments

  • blogId - The ID of the Blog.
  • postId - The ID of the Post.
  • commentId - The ID of the comment to mark as not spam.

Create a builder to help you perform the following task:

Delete a comment by ID.

Arguments

  • blogId - The ID of the Blog.
  • postId - The ID of the Post.
  • commentId - The ID of the comment to delete.

Trait Implementations

impl<'a, C, A> MethodsBuilder for CommentMethods<'a, C, A>
[src]