[][src]Struct rusoto_alexaforbusiness::SkillsStoreSkill

pub struct SkillsStoreSkill {
    pub icon_url: Option<String>,
    pub sample_utterances: Option<Vec<String>>,
    pub short_description: Option<String>,
    pub skill_details: Option<SkillDetails>,
    pub skill_id: Option<String>,
    pub skill_name: Option<String>,
    pub supports_linking: Option<bool>,
}

The detailed information about an Alexa skill.

Fields

icon_url: Option<String>

The URL where the skill icon resides.

sample_utterances: Option<Vec<String>>

Sample utterances that interact with the skill.

short_description: Option<String>

Short description about the skill.

skill_details: Option<SkillDetails>

Information about the skill.

skill_id: Option<String>

The ARN of the skill.

skill_name: Option<String>

The name of the skill.

supports_linking: Option<bool>

Linking support for a skill.

Trait Implementations

impl Clone for SkillsStoreSkill[src]

impl Debug for SkillsStoreSkill[src]

impl Default for SkillsStoreSkill[src]

impl<'de> Deserialize<'de> for SkillsStoreSkill[src]

impl PartialEq<SkillsStoreSkill> for SkillsStoreSkill[src]

impl StructuralPartialEq for SkillsStoreSkill[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> Same<T> for T

type Output = T

Should always be Self

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.