#[non_exhaustive]pub struct ListDbInstancesOutput {
pub items: Vec<DbInstanceSummary>,
pub next_token: Option<String>,
/* 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.items: Vec<DbInstanceSummary>
A list of Timestream for InfluxDB DB instance summaries.
next_token: Option<String>
Token from a previous call of the operation. When this value is provided, the service returns results from where the previous response left off.
Implementations§
source§impl ListDbInstancesOutput
impl ListDbInstancesOutput
sourcepub fn items(&self) -> &[DbInstanceSummary]
pub fn items(&self) -> &[DbInstanceSummary]
A list of Timestream for InfluxDB DB instance summaries.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Token from a previous call of the operation. When this value is provided, the service returns results from where the previous response left off.
source§impl ListDbInstancesOutput
impl ListDbInstancesOutput
sourcepub fn builder() -> ListDbInstancesOutputBuilder
pub fn builder() -> ListDbInstancesOutputBuilder
Creates a new builder-style object to manufacture ListDbInstancesOutput
.
Trait Implementations§
source§impl Clone for ListDbInstancesOutput
impl Clone for ListDbInstancesOutput
source§fn clone(&self) -> ListDbInstancesOutput
fn clone(&self) -> ListDbInstancesOutput
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 ListDbInstancesOutput
impl Debug for ListDbInstancesOutput
source§impl PartialEq for ListDbInstancesOutput
impl PartialEq for ListDbInstancesOutput
source§fn eq(&self, other: &ListDbInstancesOutput) -> bool
fn eq(&self, other: &ListDbInstancesOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListDbInstancesOutput
impl RequestId for ListDbInstancesOutput
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 ListDbInstancesOutput
Auto Trait Implementations§
impl Freeze for ListDbInstancesOutput
impl RefUnwindSafe for ListDbInstancesOutput
impl Send for ListDbInstancesOutput
impl Sync for ListDbInstancesOutput
impl Unpin for ListDbInstancesOutput
impl UnwindSafe for ListDbInstancesOutput
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.