pub struct AnalyzeDataDescriptionFeatures {
pub categorical: Option<AnalyzeDataDescriptionFeaturesCategorical>,
pub index: Option<i64>,
pub numeric: Option<AnalyzeDataDescriptionFeaturesNumeric>,
pub text: Option<AnalyzeDataDescriptionFeaturesText>,
}Expand description
Description of the input features in the data set.
This type is not used in any activity, and only used as part of another schema.
Fields§
§categorical: Option<AnalyzeDataDescriptionFeaturesCategorical>Description of the categorical values of this feature.
index: Option<i64>The feature index.
numeric: Option<AnalyzeDataDescriptionFeaturesNumeric>Description of the numeric values of this feature.
text: Option<AnalyzeDataDescriptionFeaturesText>Description of multiple-word text values of this feature.
Trait Implementations§
Source§impl Clone for AnalyzeDataDescriptionFeatures
impl Clone for AnalyzeDataDescriptionFeatures
Source§fn clone(&self) -> AnalyzeDataDescriptionFeatures
fn clone(&self) -> AnalyzeDataDescriptionFeatures
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for AnalyzeDataDescriptionFeatures
impl Default for AnalyzeDataDescriptionFeatures
Source§fn default() -> AnalyzeDataDescriptionFeatures
fn default() -> AnalyzeDataDescriptionFeatures
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalyzeDataDescriptionFeatures
impl<'de> Deserialize<'de> for AnalyzeDataDescriptionFeatures
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 NestedType for AnalyzeDataDescriptionFeatures
impl Part for AnalyzeDataDescriptionFeatures
Auto Trait Implementations§
impl Freeze for AnalyzeDataDescriptionFeatures
impl RefUnwindSafe for AnalyzeDataDescriptionFeatures
impl Send for AnalyzeDataDescriptionFeatures
impl Sync for AnalyzeDataDescriptionFeatures
impl Unpin for AnalyzeDataDescriptionFeatures
impl UnsafeUnpin for AnalyzeDataDescriptionFeatures
impl UnwindSafe for AnalyzeDataDescriptionFeatures
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