Struct gapi_grpc::google::cloud::talent::v4beta1::Patent[][src]

pub struct Patent {
    pub display_name: String,
    pub inventors: Vec<String>,
    pub patent_status: String,
    pub patent_status_date: Option<Date>,
    pub patent_filing_date: Option<Date>,
    pub patent_office: String,
    pub patent_number: String,
    pub patent_description: String,
    pub skills_used: Vec<Skill>,
}

Resource that represents the patent acquired by a candidate.

Fields

display_name: String

Name of the patent.

Number of characters allowed is 100.

inventors: Vec<String>

A list of inventors’ names.

Number of characters allowed for each is 100.

patent_status: String

The status of the patent.

Number of characters allowed is 100.

patent_status_date: Option<Date>

The date the last time the status of the patent was checked.

patent_filing_date: Option<Date>

The date that the patent was filed.

patent_office: String

The name of the patent office.

Number of characters allowed is 100.

patent_number: String

The number of the patent.

Number of characters allowed is 100.

patent_description: String

The description of the patent.

Number of characters allowed is 100,000.

skills_used: Vec<Skill>

The skills used in this patent.

Trait Implementations

impl Clone for Patent[src]

impl Debug for Patent[src]

impl Default for Patent[src]

impl Message for Patent[src]

impl PartialEq<Patent> for Patent[src]

impl StructuralPartialEq for Patent[src]

Auto Trait Implementations

impl RefUnwindSafe for Patent

impl Send for Patent

impl Sync for Patent

impl Unpin for Patent

impl UnwindSafe for Patent

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]