#[non_exhaustive]pub struct BatchGetRecordOutput { /* private fields */ }
Implementations
sourceimpl BatchGetRecordOutput
impl BatchGetRecordOutput
sourcepub fn records(&self) -> Option<&[BatchGetRecordResultDetail]>
pub fn records(&self) -> Option<&[BatchGetRecordResultDetail]>
A list of Records you requested to be retrieved in batch.
sourcepub fn errors(&self) -> Option<&[BatchGetRecordError]>
pub fn errors(&self) -> Option<&[BatchGetRecordError]>
A list of errors that have occured when retrieving a batch of Records.
sourcepub fn unprocessed_identifiers(&self) -> Option<&[BatchGetRecordIdentifier]>
pub fn unprocessed_identifiers(&self) -> Option<&[BatchGetRecordIdentifier]>
A unprocessed list of FeatureGroup
names, with their corresponding RecordIdentifier
value, and Feature name.
sourceimpl BatchGetRecordOutput
impl BatchGetRecordOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BatchGetRecordOutput
.
Trait Implementations
sourceimpl Clone for BatchGetRecordOutput
impl Clone for BatchGetRecordOutput
sourcefn clone(&self) -> BatchGetRecordOutput
fn clone(&self) -> BatchGetRecordOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for BatchGetRecordOutput
impl Debug for BatchGetRecordOutput
sourceimpl PartialEq<BatchGetRecordOutput> for BatchGetRecordOutput
impl PartialEq<BatchGetRecordOutput> for BatchGetRecordOutput
sourcefn eq(&self, other: &BatchGetRecordOutput) -> bool
fn eq(&self, other: &BatchGetRecordOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for BatchGetRecordOutput
Auto Trait Implementations
impl RefUnwindSafe for BatchGetRecordOutput
impl Send for BatchGetRecordOutput
impl Sync for BatchGetRecordOutput
impl Unpin for BatchGetRecordOutput
impl UnwindSafe for BatchGetRecordOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more