#[non_exhaustive]pub enum Response {
SelectEntity(Box<SelectEntity>),
SelectTimeRangeAndFeature(Box<SelectTimeRangeAndFeature>),
}Available on crate feature
featurestore-service only.Expand description
Response based on which delete option is specified in the request
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>)
Response for request specifying the entities to delete
SelectTimeRangeAndFeature(Box<SelectTimeRangeAndFeature>)
Response for request specifying time range and feature
Trait Implementations§
impl StructuralPartialEq for Response
Auto Trait Implementations§
impl Freeze for Response
impl RefUnwindSafe for Response
impl Send for Response
impl Sync for Response
impl Unpin for Response
impl UnwindSafe for Response
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