#[non_exhaustive]pub enum DeleteOption {
SelectEntity(Box<SelectEntity>),
SelectTimeRangeAndFeature(Box<SelectTimeRangeAndFeature>),
}Available on crate feature
featurestore-service only.Expand description
Defines options to select feature values to be deleted.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
SelectEntity(Box<SelectEntity>)
Select feature values to be deleted by specifying entities.
SelectTimeRangeAndFeature(Box<SelectTimeRangeAndFeature>)
Select feature values to be deleted by specifying time range and features.
Trait Implementations§
Source§impl Clone for DeleteOption
impl Clone for DeleteOption
Source§fn clone(&self) -> DeleteOption
fn clone(&self) -> DeleteOption
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 DeleteOption
impl Debug for DeleteOption
Source§impl PartialEq for DeleteOption
impl PartialEq for DeleteOption
impl StructuralPartialEq for DeleteOption
Auto Trait Implementations§
impl Freeze for DeleteOption
impl RefUnwindSafe for DeleteOption
impl Send for DeleteOption
impl Sync for DeleteOption
impl Unpin for DeleteOption
impl UnsafeUnpin for DeleteOption
impl UnwindSafe for DeleteOption
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