#[non_exhaustive]pub struct UpdateKxDatabaseInput {
pub environment_id: Option<String>,
pub database_name: Option<String>,
pub description: Option<String>,
pub client_token: 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.environment_id: Option<String>A unique identifier for the kdb environment.
database_name: Option<String>The name of the kdb database.
description: Option<String>A description of the database.
client_token: Option<String>A token that ensures idempotency. This token expires in 10 minutes.
Implementations§
source§impl UpdateKxDatabaseInput
impl UpdateKxDatabaseInput
sourcepub fn environment_id(&self) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
A unique identifier for the kdb environment.
sourcepub fn database_name(&self) -> Option<&str>
pub fn database_name(&self) -> Option<&str>
The name of the kdb database.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the database.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A token that ensures idempotency. This token expires in 10 minutes.
source§impl UpdateKxDatabaseInput
impl UpdateKxDatabaseInput
sourcepub fn builder() -> UpdateKxDatabaseInputBuilder
pub fn builder() -> UpdateKxDatabaseInputBuilder
Creates a new builder-style object to manufacture UpdateKxDatabaseInput.
Trait Implementations§
source§impl Clone for UpdateKxDatabaseInput
impl Clone for UpdateKxDatabaseInput
source§fn clone(&self) -> UpdateKxDatabaseInput
fn clone(&self) -> UpdateKxDatabaseInput
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 UpdateKxDatabaseInput
impl Debug for UpdateKxDatabaseInput
source§impl PartialEq for UpdateKxDatabaseInput
impl PartialEq for UpdateKxDatabaseInput
source§fn eq(&self, other: &UpdateKxDatabaseInput) -> bool
fn eq(&self, other: &UpdateKxDatabaseInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateKxDatabaseInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateKxDatabaseInput
impl Send for UpdateKxDatabaseInput
impl Sync for UpdateKxDatabaseInput
impl Unpin for UpdateKxDatabaseInput
impl UnwindSafe for UpdateKxDatabaseInput
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