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