#[non_exhaustive]pub struct BatchGetQueryExecutionInput {
pub query_execution_ids: Option<Vec<String>>,
}Expand description
Contains an array of query execution IDs.
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.query_execution_ids: Option<Vec<String>>An array of query execution IDs.
Implementations§
source§impl BatchGetQueryExecutionInput
impl BatchGetQueryExecutionInput
sourcepub fn query_execution_ids(&self) -> Option<&[String]>
pub fn query_execution_ids(&self) -> Option<&[String]>
An array of query execution IDs.
source§impl BatchGetQueryExecutionInput
impl BatchGetQueryExecutionInput
sourcepub fn builder() -> BatchGetQueryExecutionInputBuilder
pub fn builder() -> BatchGetQueryExecutionInputBuilder
Creates a new builder-style object to manufacture BatchGetQueryExecutionInput.
Trait Implementations§
source§impl Clone for BatchGetQueryExecutionInput
impl Clone for BatchGetQueryExecutionInput
source§fn clone(&self) -> BatchGetQueryExecutionInput
fn clone(&self) -> BatchGetQueryExecutionInput
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 BatchGetQueryExecutionInput
impl Debug for BatchGetQueryExecutionInput
source§impl PartialEq for BatchGetQueryExecutionInput
impl PartialEq for BatchGetQueryExecutionInput
source§fn eq(&self, other: &BatchGetQueryExecutionInput) -> bool
fn eq(&self, other: &BatchGetQueryExecutionInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchGetQueryExecutionInput
Auto Trait Implementations§
impl RefUnwindSafe for BatchGetQueryExecutionInput
impl Send for BatchGetQueryExecutionInput
impl Sync for BatchGetQueryExecutionInput
impl Unpin for BatchGetQueryExecutionInput
impl UnwindSafe for BatchGetQueryExecutionInput
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