pub struct BuiltinIntentMetadata {
pub signature: Option<String>,
pub supported_locales: Option<Vec<String>>,
}Expand description
Provides metadata for a built-in intent.
Fields§
§signature: Option<String>A unique identifier for the built-in intent. To find the signature for an intent, see Standard Built-in Intents in the Alexa Skills Kit.
supported_locales: Option<Vec<String>>A list of identifiers for the locales that the intent supports.
Trait Implementations§
Source§impl Clone for BuiltinIntentMetadata
impl Clone for BuiltinIntentMetadata
Source§fn clone(&self) -> BuiltinIntentMetadata
fn clone(&self) -> BuiltinIntentMetadata
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BuiltinIntentMetadata
impl Debug for BuiltinIntentMetadata
Source§impl Default for BuiltinIntentMetadata
impl Default for BuiltinIntentMetadata
Source§fn default() -> BuiltinIntentMetadata
fn default() -> BuiltinIntentMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BuiltinIntentMetadata
impl<'de> Deserialize<'de> for BuiltinIntentMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BuiltinIntentMetadata
impl PartialEq for BuiltinIntentMetadata
impl StructuralPartialEq for BuiltinIntentMetadata
Auto Trait Implementations§
impl Freeze for BuiltinIntentMetadata
impl RefUnwindSafe for BuiltinIntentMetadata
impl Send for BuiltinIntentMetadata
impl Sync for BuiltinIntentMetadata
impl Unpin for BuiltinIntentMetadata
impl UnwindSafe for BuiltinIntentMetadata
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more