#[non_exhaustive]pub struct DescribeDatabaseInput {
pub database_name: Option<String>,
}
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.database_name: Option<String>
The name of the Timestream database.
Implementations§
source§impl DescribeDatabaseInput
impl DescribeDatabaseInput
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of the Timestream database.
source§impl DescribeDatabaseInput
impl DescribeDatabaseInput
sourcepub fn builder() -> DescribeDatabaseInputBuilder
pub fn builder() -> DescribeDatabaseInputBuilder
Creates a new builder-style object to manufacture DescribeDatabaseInput
.
Trait Implementations§
source§impl Clone for DescribeDatabaseInput
impl Clone for DescribeDatabaseInput
source§fn clone(&self) -> DescribeDatabaseInput
fn clone(&self) -> DescribeDatabaseInput
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 DescribeDatabaseInput
impl Debug for DescribeDatabaseInput
source§impl PartialEq<DescribeDatabaseInput> for DescribeDatabaseInput
impl PartialEq<DescribeDatabaseInput> for DescribeDatabaseInput
source§fn eq(&self, other: &DescribeDatabaseInput) -> bool
fn eq(&self, other: &DescribeDatabaseInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeDatabaseInput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeDatabaseInput
impl Send for DescribeDatabaseInput
impl Sync for DescribeDatabaseInput
impl Unpin for DescribeDatabaseInput
impl UnwindSafe for DescribeDatabaseInput
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