#[non_exhaustive]pub struct DeleteFeatureValuesResponse {
pub response: Option<Response>,
/* private fields */
}Expand description
Response message for FeaturestoreService.DeleteFeatureValues.
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.response: Option<Response>Response based on which delete option is specified in the request
Implementations§
Source§impl DeleteFeatureValuesResponse
impl DeleteFeatureValuesResponse
pub fn new() -> Self
Sourcepub fn set_response<T: Into<Option<Response>>>(self, v: T) -> Self
pub fn set_response<T: Into<Option<Response>>>(self, v: T) -> Self
Sets the value of response.
Note that all the setters affecting response are mutually
exclusive.
Sourcepub fn select_entity(&self) -> Option<&Box<SelectEntity>>
pub fn select_entity(&self) -> Option<&Box<SelectEntity>>
The value of response
if it holds a SelectEntity, None if the field is not set or
holds a different branch.
Sourcepub fn set_select_entity<T: Into<Box<SelectEntity>>>(self, v: T) -> Self
pub fn set_select_entity<T: Into<Box<SelectEntity>>>(self, v: T) -> Self
Sets the value of response
to hold a SelectEntity.
Note that all the setters affecting response are
mutually exclusive.
Sourcepub fn select_time_range_and_feature(
&self,
) -> Option<&Box<SelectTimeRangeAndFeature>>
pub fn select_time_range_and_feature( &self, ) -> Option<&Box<SelectTimeRangeAndFeature>>
The value of response
if it holds a SelectTimeRangeAndFeature, None if the field is not set or
holds a different branch.
Sourcepub fn set_select_time_range_and_feature<T: Into<Box<SelectTimeRangeAndFeature>>>(
self,
v: T,
) -> Self
pub fn set_select_time_range_and_feature<T: Into<Box<SelectTimeRangeAndFeature>>>( self, v: T, ) -> Self
Sets the value of response
to hold a SelectTimeRangeAndFeature.
Note that all the setters affecting response are
mutually exclusive.
Trait Implementations§
Source§impl Clone for DeleteFeatureValuesResponse
impl Clone for DeleteFeatureValuesResponse
Source§fn clone(&self) -> DeleteFeatureValuesResponse
fn clone(&self) -> DeleteFeatureValuesResponse
Returns a copy 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 DeleteFeatureValuesResponse
impl Debug for DeleteFeatureValuesResponse
Source§impl Default for DeleteFeatureValuesResponse
impl Default for DeleteFeatureValuesResponse
Source§fn default() -> DeleteFeatureValuesResponse
fn default() -> DeleteFeatureValuesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteFeatureValuesResponsewhere
DeleteFeatureValuesResponse: Default,
impl<'de> Deserialize<'de> for DeleteFeatureValuesResponsewhere
DeleteFeatureValuesResponse: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for DeleteFeatureValuesResponse
Auto Trait Implementations§
impl Freeze for DeleteFeatureValuesResponse
impl RefUnwindSafe for DeleteFeatureValuesResponse
impl Send for DeleteFeatureValuesResponse
impl Sync for DeleteFeatureValuesResponse
impl Unpin for DeleteFeatureValuesResponse
impl UnwindSafe for DeleteFeatureValuesResponse
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