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