#[non_exhaustive]pub struct BatchGetNamedQueryOutput {
pub named_queries: Option<Vec<NamedQuery>>,
pub unprocessed_named_query_ids: Option<Vec<UnprocessedNamedQueryId>>,
/* private fields */
}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.named_queries: Option<Vec<NamedQuery>>Information about the named query IDs submitted.
unprocessed_named_query_ids: Option<Vec<UnprocessedNamedQueryId>>Information about provided query IDs.
Implementations§
source§impl BatchGetNamedQueryOutput
impl BatchGetNamedQueryOutput
sourcepub fn named_queries(&self) -> &[NamedQuery]
pub fn named_queries(&self) -> &[NamedQuery]
Information about the named query IDs submitted.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .named_queries.is_none().
sourcepub fn unprocessed_named_query_ids(&self) -> &[UnprocessedNamedQueryId]
pub fn unprocessed_named_query_ids(&self) -> &[UnprocessedNamedQueryId]
Information about provided query IDs.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .unprocessed_named_query_ids.is_none().
source§impl BatchGetNamedQueryOutput
impl BatchGetNamedQueryOutput
sourcepub fn builder() -> BatchGetNamedQueryOutputBuilder
pub fn builder() -> BatchGetNamedQueryOutputBuilder
Creates a new builder-style object to manufacture BatchGetNamedQueryOutput.
Trait Implementations§
source§impl Clone for BatchGetNamedQueryOutput
impl Clone for BatchGetNamedQueryOutput
source§fn clone(&self) -> BatchGetNamedQueryOutput
fn clone(&self) -> BatchGetNamedQueryOutput
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 BatchGetNamedQueryOutput
impl Debug for BatchGetNamedQueryOutput
source§impl PartialEq for BatchGetNamedQueryOutput
impl PartialEq for BatchGetNamedQueryOutput
source§fn eq(&self, other: &BatchGetNamedQueryOutput) -> bool
fn eq(&self, other: &BatchGetNamedQueryOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for BatchGetNamedQueryOutput
impl RequestId for BatchGetNamedQueryOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for BatchGetNamedQueryOutput
Auto Trait Implementations§
impl Freeze for BatchGetNamedQueryOutput
impl RefUnwindSafe for BatchGetNamedQueryOutput
impl Send for BatchGetNamedQueryOutput
impl Sync for BatchGetNamedQueryOutput
impl Unpin for BatchGetNamedQueryOutput
impl UnwindSafe for BatchGetNamedQueryOutput
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.