[][src]Struct gcp_client::google::cloud::talent::v4beta1::Publication

pub struct Publication {
    pub authors: Vec<String>,
    pub title: String,
    pub description: String,
    pub journal: String,
    pub volume: String,
    pub publisher: String,
    pub publication_date: Option<Date>,
    pub publication_type: String,
    pub isbn: String,
}

Resource that represents a publication resource of a candidate.

Fields

authors: Vec<String>

A list of author names.

Number of characters allowed is 100.

title: String

The title of the publication.

Number of characters allowed is 100.

description: String

The description of the publication.

Number of characters allowed is 100,000.

journal: String

The journal name of the publication.

Number of characters allowed is 100.

volume: String

Volume number.

Number of characters allowed is 100.

publisher: String

The publisher of the journal.

Number of characters allowed is 100.

publication_date: Option<Date>

The publication date.

publication_type: String

The publication type.

Number of characters allowed is 100.

isbn: String

ISBN number.

Number of characters allowed is 100.

Trait Implementations

impl Clone for Publication[src]

impl Debug for Publication[src]

impl Default for Publication[src]

impl Message for Publication[src]

impl PartialEq<Publication> for Publication[src]

impl StructuralPartialEq for Publication[src]

Auto Trait Implementations

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]