#[non_exhaustive]pub struct BatchGetRecordIdentifier { /* private fields */ }
Expand description
The identifier that identifies the batch of Records you are retrieving in a batch.
Implementations
sourceimpl BatchGetRecordIdentifier
impl BatchGetRecordIdentifier
sourcepub fn feature_group_name(&self) -> Option<&str>
pub fn feature_group_name(&self) -> Option<&str>
A FeatureGroupName
containing Records you are retrieving in a batch.
sourcepub fn record_identifiers_value_as_string(&self) -> Option<&[String]>
pub fn record_identifiers_value_as_string(&self) -> Option<&[String]>
The value for a list of record identifiers in string format.
sourcepub fn feature_names(&self) -> Option<&[String]>
pub fn feature_names(&self) -> Option<&[String]>
List of names of Features to be retrieved. If not specified, the latest value for all the Features are returned.
sourceimpl BatchGetRecordIdentifier
impl BatchGetRecordIdentifier
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BatchGetRecordIdentifier
.
Trait Implementations
sourceimpl Clone for BatchGetRecordIdentifier
impl Clone for BatchGetRecordIdentifier
sourcefn clone(&self) -> BatchGetRecordIdentifier
fn clone(&self) -> BatchGetRecordIdentifier
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 BatchGetRecordIdentifier
impl Debug for BatchGetRecordIdentifier
sourceimpl PartialEq<BatchGetRecordIdentifier> for BatchGetRecordIdentifier
impl PartialEq<BatchGetRecordIdentifier> for BatchGetRecordIdentifier
sourcefn eq(&self, other: &BatchGetRecordIdentifier) -> bool
fn eq(&self, other: &BatchGetRecordIdentifier) -> bool
impl StructuralPartialEq for BatchGetRecordIdentifier
Auto Trait Implementations
impl RefUnwindSafe for BatchGetRecordIdentifier
impl Send for BatchGetRecordIdentifier
impl Sync for BatchGetRecordIdentifier
impl Unpin for BatchGetRecordIdentifier
impl UnwindSafe for BatchGetRecordIdentifier
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