pub struct AgentListEntry {
pub agent_arn: Option<String>,
pub name: Option<String>,
pub status: Option<String>,
}
Expand description
Represents a single entry in a list of agents. AgentListEntry
returns an array that contains a list of agents when the ListAgents operation is called.
Fields§
§agent_arn: Option<String>
The Amazon Resource Name (ARN) of the agent.
name: Option<String>
The name of the agent.
status: Option<String>
The status of the agent.
Trait Implementations§
Source§impl Clone for AgentListEntry
impl Clone for AgentListEntry
Source§fn clone(&self) -> AgentListEntry
fn clone(&self) -> AgentListEntry
Returns a copy 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 AgentListEntry
impl Debug for AgentListEntry
Source§impl Default for AgentListEntry
impl Default for AgentListEntry
Source§fn default() -> AgentListEntry
fn default() -> AgentListEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentListEntry
impl<'de> Deserialize<'de> for AgentListEntry
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 AgentListEntry
impl PartialEq for AgentListEntry
impl StructuralPartialEq for AgentListEntry
Auto Trait Implementations§
impl Freeze for AgentListEntry
impl RefUnwindSafe for AgentListEntry
impl Send for AgentListEntry
impl Sync for AgentListEntry
impl Unpin for AgentListEntry
impl UnwindSafe for AgentListEntry
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