pub struct GetBuiltinIntentResponse {
pub signature: Option<String>,
pub slots: Option<Vec<BuiltinIntentSlot>>,
pub supported_locales: Option<Vec<String>>,
}Fields§
§signature: Option<String>The unique identifier for a built-in intent.
slots: Option<Vec<BuiltinIntentSlot>>An array of BuiltinIntentSlot objects, one entry for each slot type in the intent.
supported_locales: Option<Vec<String>>A list of locales that the intent supports.
Trait Implementations§
Source§impl Clone for GetBuiltinIntentResponse
impl Clone for GetBuiltinIntentResponse
Source§fn clone(&self) -> GetBuiltinIntentResponse
fn clone(&self) -> GetBuiltinIntentResponse
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 GetBuiltinIntentResponse
impl Debug for GetBuiltinIntentResponse
Source§impl Default for GetBuiltinIntentResponse
impl Default for GetBuiltinIntentResponse
Source§fn default() -> GetBuiltinIntentResponse
fn default() -> GetBuiltinIntentResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetBuiltinIntentResponse
impl<'de> Deserialize<'de> for GetBuiltinIntentResponse
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 GetBuiltinIntentResponse
impl PartialEq for GetBuiltinIntentResponse
impl StructuralPartialEq for GetBuiltinIntentResponse
Auto Trait Implementations§
impl Freeze for GetBuiltinIntentResponse
impl RefUnwindSafe for GetBuiltinIntentResponse
impl Send for GetBuiltinIntentResponse
impl Sync for GetBuiltinIntentResponse
impl Unpin for GetBuiltinIntentResponse
impl UnwindSafe for GetBuiltinIntentResponse
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