[][src]Struct rusoto_codecommit::Comment

pub struct Comment {
    pub author_arn: Option<String>,
    pub client_request_token: Option<String>,
    pub comment_id: Option<String>,
    pub content: Option<String>,
    pub creation_date: Option<f64>,
    pub deleted: Option<bool>,
    pub in_reply_to: Option<String>,
    pub last_modified_date: Option<f64>,
}

Returns information about a specific comment.

Fields

author_arn: Option<String>

The Amazon Resource Name (ARN) of the person who posted the comment.

client_request_token: Option<String>

A unique, client-generated idempotency token that when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request will return information about the initial request that used that token.

comment_id: Option<String>

The system-generated comment ID.

content: Option<String>

The content of the comment.

creation_date: Option<f64>

The date and time the comment was created, in timestamp format.

deleted: Option<bool>

A Boolean value indicating whether the comment has been deleted.

in_reply_to: Option<String>

The ID of the comment for which this comment is a reply, if any.

last_modified_date: Option<f64>

The date and time the comment was most recently modified, in timestamp format.

Trait Implementations

impl PartialEq<Comment> for Comment[src]

impl Default for Comment[src]

impl Clone for Comment[src]

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

Performs copy-assignment from source. Read more

impl Debug for Comment[src]

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

Auto Trait Implementations

impl Send for Comment

impl Sync for Comment

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

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

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self