#[non_exhaustive]pub struct ListBotReplicasOutput {
pub bot_id: Option<String>,
pub source_region: Option<String>,
pub bot_replica_summaries: Option<Vec<BotReplicaSummary>>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.bot_id: Option<String>the unique bot IDs in the list of replicated bots.
source_region: Option<String>The source region of the source bots in the list of replicated bots.
bot_replica_summaries: Option<Vec<BotReplicaSummary>>The summary details for the replicated bots.
Implementations§
source§impl ListBotReplicasOutput
impl ListBotReplicasOutput
sourcepub fn source_region(&self) -> Option<&str>
pub fn source_region(&self) -> Option<&str>
The source region of the source bots in the list of replicated bots.
sourcepub fn bot_replica_summaries(&self) -> &[BotReplicaSummary]
pub fn bot_replica_summaries(&self) -> &[BotReplicaSummary]
The summary details for the replicated bots.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .bot_replica_summaries.is_none().
source§impl ListBotReplicasOutput
impl ListBotReplicasOutput
sourcepub fn builder() -> ListBotReplicasOutputBuilder
pub fn builder() -> ListBotReplicasOutputBuilder
Creates a new builder-style object to manufacture ListBotReplicasOutput.
Trait Implementations§
source§impl Clone for ListBotReplicasOutput
impl Clone for ListBotReplicasOutput
source§fn clone(&self) -> ListBotReplicasOutput
fn clone(&self) -> ListBotReplicasOutput
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 ListBotReplicasOutput
impl Debug for ListBotReplicasOutput
source§impl PartialEq for ListBotReplicasOutput
impl PartialEq for ListBotReplicasOutput
source§fn eq(&self, other: &ListBotReplicasOutput) -> bool
fn eq(&self, other: &ListBotReplicasOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for ListBotReplicasOutput
impl RequestId for ListBotReplicasOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for ListBotReplicasOutput
Auto Trait Implementations§
impl Freeze for ListBotReplicasOutput
impl RefUnwindSafe for ListBotReplicasOutput
impl Send for ListBotReplicasOutput
impl Sync for ListBotReplicasOutput
impl Unpin for ListBotReplicasOutput
impl UnwindSafe for ListBotReplicasOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.