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

pub struct Degree {
    pub degree_type: i32,
    pub degree_name: String,
    pub fields_of_study: Vec<String>,
}

Resource that represents a degree pursuing or acquired by a candidate.

Fields

degree_type: i32

ISCED degree type.

degree_name: String

Full Degree name.

For example, "B.S.", "Master of Arts", and so on.

Number of characters allowed is 100.

fields_of_study: Vec<String>

Fields of study for the degree.

For example, "Computer science", "engineering".

Number of characters allowed is 100.

Implementations

impl Degree[src]

pub fn degree_type(&self) -> DegreeType[src]

Returns the enum value of degree_type, or the default if the field is set to an invalid enum value.

pub fn set_degree_type(&mut self, value: DegreeType)[src]

Sets degree_type to the provided enum value.

Trait Implementations

impl Clone for Degree[src]

impl Debug for Degree[src]

impl Default for Degree[src]

impl Message for Degree[src]

impl PartialEq<Degree> for Degree[src]

impl StructuralPartialEq for Degree[src]

Auto Trait Implementations

impl RefUnwindSafe for Degree

impl Send for Degree

impl Sync for Degree

impl Unpin for Degree

impl UnwindSafe for Degree

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]