[][src]Struct gcp_client::google::cloud::support::common::Comment

pub struct Comment {
    pub text: String,
    pub create_time: Option<Timestamp>,
    pub author: String,
    pub name: String,
}

The comment text associated with a Case.

Fields

text: String

Text containing a maximum of 3000 characters.

create_time: Option<Timestamp>

Time when this update was created. Output only.

author: String

The email address/name of user who created this comment. Output only.

name: String

The resource name for this comment in format supportAccounts/{account_id}/cases/{case_id}/{comment_id}. Output only.

Trait Implementations

impl Clone for Comment[src]

impl Debug for Comment[src]

impl Default for Comment[src]

impl Message for Comment[src]

impl PartialEq<Comment> for Comment[src]

impl StructuralPartialEq for Comment[src]

Auto Trait Implementations

impl RefUnwindSafe for Comment

impl Send for Comment

impl Sync for Comment

impl Unpin for Comment

impl UnwindSafe for Comment

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]