#[non_exhaustive]pub struct SelectEntity {
pub offline_storage_deleted_entity_row_count: i64,
pub online_storage_deleted_entity_count: i64,
/* private fields */
}Available on crate feature
featurestore-service only.Expand description
Response message if the request uses the SelectEntity option.
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.offline_storage_deleted_entity_row_count: i64The count of deleted entity rows in the offline storage. Each row corresponds to the combination of an entity ID and a timestamp. One entity ID can have multiple rows in the offline storage.
online_storage_deleted_entity_count: i64The count of deleted entities in the online storage. Each entity ID corresponds to one entity.
Implementations§
Source§impl SelectEntity
impl SelectEntity
pub fn new() -> Self
Sourcepub fn set_offline_storage_deleted_entity_row_count<T: Into<i64>>(
self,
v: T,
) -> Self
pub fn set_offline_storage_deleted_entity_row_count<T: Into<i64>>( self, v: T, ) -> Self
Sets the value of offline_storage_deleted_entity_row_count.
§Example
ⓘ
let x = SelectEntity::new().set_offline_storage_deleted_entity_row_count(42);Sourcepub fn set_online_storage_deleted_entity_count<T: Into<i64>>(self, v: T) -> Self
pub fn set_online_storage_deleted_entity_count<T: Into<i64>>(self, v: T) -> Self
Sets the value of online_storage_deleted_entity_count.
§Example
ⓘ
let x = SelectEntity::new().set_online_storage_deleted_entity_count(42);Trait Implementations§
Source§impl Clone for SelectEntity
impl Clone for SelectEntity
Source§fn clone(&self) -> SelectEntity
fn clone(&self) -> SelectEntity
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 SelectEntity
impl Debug for SelectEntity
Source§impl Default for SelectEntity
impl Default for SelectEntity
Source§fn default() -> SelectEntity
fn default() -> SelectEntity
Returns the “default value” for a type. Read more
Source§impl Message for SelectEntity
impl Message for SelectEntity
Source§impl PartialEq for SelectEntity
impl PartialEq for SelectEntity
impl StructuralPartialEq for SelectEntity
Auto Trait Implementations§
impl Freeze for SelectEntity
impl RefUnwindSafe for SelectEntity
impl Send for SelectEntity
impl Sync for SelectEntity
impl Unpin for SelectEntity
impl UnwindSafe for SelectEntity
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