pub struct GetBuiltinIntentsResponse {
pub intents: Option<Vec<BuiltinIntentMetadata>>,
pub next_token: Option<String>,
}Fields§
§intents: Option<Vec<BuiltinIntentMetadata>>An array of builtinIntentMetadata objects, one for each intent in the response.
next_token: Option<String>A pagination token that fetches the next page of intents. If the response to this API call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of intents, specify the pagination token in the next request.
Trait Implementations§
Source§impl Clone for GetBuiltinIntentsResponse
impl Clone for GetBuiltinIntentsResponse
Source§fn clone(&self) -> GetBuiltinIntentsResponse
fn clone(&self) -> GetBuiltinIntentsResponse
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 GetBuiltinIntentsResponse
impl Debug for GetBuiltinIntentsResponse
Source§impl Default for GetBuiltinIntentsResponse
impl Default for GetBuiltinIntentsResponse
Source§fn default() -> GetBuiltinIntentsResponse
fn default() -> GetBuiltinIntentsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetBuiltinIntentsResponse
impl<'de> Deserialize<'de> for GetBuiltinIntentsResponse
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
impl StructuralPartialEq for GetBuiltinIntentsResponse
Auto Trait Implementations§
impl Freeze for GetBuiltinIntentsResponse
impl RefUnwindSafe for GetBuiltinIntentsResponse
impl Send for GetBuiltinIntentsResponse
impl Sync for GetBuiltinIntentsResponse
impl Unpin for GetBuiltinIntentsResponse
impl UnwindSafe for GetBuiltinIntentsResponse
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