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