#[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 moresourceimpl 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
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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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