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

pub struct Skill {
    pub display_name: String,
    pub last_used_date: Option<Date>,
    pub level: i32,
    pub context: String,
    pub skill_name_snippet: String,
}

Resource that represents a skill of a candidate.

Fields

display_name: String

Skill display name.

For example, "Java", "Python".

Number of characters allowed is 100.

last_used_date: Option<Date>

The last time this skill was used.

level: i32

Skill proficiency level which indicates how proficient the candidate is at this skill.

context: String

A paragraph describes context of this skill.

Number of characters allowed is 100,000.

skill_name_snippet: String

Output only. Skill name snippet shows how the [display_name][google.cloud.talent.v4beta1.Skill.display_name] is related to a search query. It's empty if the [display_name][google.cloud.talent.v4beta1.Skill.display_name] isn't related to the search query.

Implementations

impl Skill[src]

pub fn level(&self) -> SkillProficiencyLevel[src]

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

pub fn set_level(&mut self, value: SkillProficiencyLevel)[src]

Sets level to the provided enum value.

Trait Implementations

impl Clone for Skill[src]

impl Debug for Skill[src]

impl Default for Skill[src]

impl Message for Skill[src]

impl PartialEq<Skill> for Skill[src]

impl StructuralPartialEq for Skill[src]

Auto Trait Implementations

impl RefUnwindSafe for Skill

impl Send for Skill

impl Sync for Skill

impl Unpin for Skill

impl UnwindSafe for Skill

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]