pub struct GetIntentsResponse {
pub intents: Option<Vec<IntentMetadata>>,
pub next_token: Option<String>,
}Fields§
§intents: Option<Vec<IntentMetadata>>An array of Intent objects. For more information, see PutBot.
next_token: Option<String>If the response is truncated, the response includes a pagination token that you can specify in your next request to fetch the next page of intents.
Trait Implementations§
Source§impl Clone for GetIntentsResponse
impl Clone for GetIntentsResponse
Source§fn clone(&self) -> GetIntentsResponse
fn clone(&self) -> GetIntentsResponse
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 GetIntentsResponse
impl Debug for GetIntentsResponse
Source§impl Default for GetIntentsResponse
impl Default for GetIntentsResponse
Source§fn default() -> GetIntentsResponse
fn default() -> GetIntentsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetIntentsResponse
impl<'de> Deserialize<'de> for GetIntentsResponse
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 GetIntentsResponse
impl PartialEq for GetIntentsResponse
impl StructuralPartialEq for GetIntentsResponse
Auto Trait Implementations§
impl Freeze for GetIntentsResponse
impl RefUnwindSafe for GetIntentsResponse
impl Send for GetIntentsResponse
impl Sync for GetIntentsResponse
impl Unpin for GetIntentsResponse
impl UnwindSafe for GetIntentsResponse
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