#[non_exhaustive]pub struct EntityView {
pub entity_id: String,
pub data: Vec<Data>,
/* private fields */
}Available on crate feature
featurestore-online-serving-service only.Expand description
Entity view with Feature values.
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.entity_id: StringID of the requested entity.
data: Vec<Data>Each piece of data holds the k requested values for one requested Feature. If no values for the requested Feature exist, the corresponding cell will be empty. This has the same size and is in the same order as the features from the header ReadFeatureValuesResponse.header.
Implementations§
Trait Implementations§
Source§impl Clone for EntityView
impl Clone for EntityView
Source§fn clone(&self) -> EntityView
fn clone(&self) -> EntityView
Returns a duplicate 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 EntityView
impl Debug for EntityView
Source§impl Default for EntityView
impl Default for EntityView
Source§fn default() -> EntityView
fn default() -> EntityView
Returns the “default value” for a type. Read more
Source§impl PartialEq for EntityView
impl PartialEq for EntityView
impl StructuralPartialEq for EntityView
Auto Trait Implementations§
impl Freeze for EntityView
impl RefUnwindSafe for EntityView
impl Send for EntityView
impl Sync for EntityView
impl Unpin for EntityView
impl UnwindSafe for EntityView
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