#[non_exhaustive]pub struct BatchGetRecordIdentifier {
pub feature_group_name: Option<String>,
pub record_identifiers_value_as_string: Option<Vec<String>>,
pub feature_names: Option<Vec<String>>,
}
Expand description
The identifier that identifies the batch of Records you are retrieving in a batch.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.feature_group_name: Option<String>
A FeatureGroupName
containing Records you are retrieving in a batch.
record_identifiers_value_as_string: Option<Vec<String>>
The value for a list of record identifiers in string format.
feature_names: Option<Vec<String>>
List of names of Features to be retrieved. If not specified, the latest value for all the Features are returned.
Implementations
A FeatureGroupName
containing Records you are retrieving in a batch.
The value for a list of record identifiers in string format.
Creates a new builder-style object to manufacture BatchGetRecordIdentifier
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more