pub struct PipelineDslShapePlan {
pub input_granularity: Option<Granularity>,
pub target_granularity: Option<Granularity>,
pub fit_rows: Option<FitBoundary>,
pub predict_rows: Option<FitBoundary>,
pub feature_namespace: Option<String>,
pub feature_schema_fingerprint: Option<String>,
pub target_space: Option<String>,
pub aggregation_policy: Option<AggregationPolicy>,
pub augmentation_policy: Option<AugmentationPolicy>,
pub selection_policy: Option<FeatureSelectionPolicy>,
}Fields§
§input_granularity: Option<Granularity>§target_granularity: Option<Granularity>§fit_rows: Option<FitBoundary>§predict_rows: Option<FitBoundary>§feature_namespace: Option<String>§feature_schema_fingerprint: Option<String>§target_space: Option<String>§aggregation_policy: Option<AggregationPolicy>§augmentation_policy: Option<AugmentationPolicy>§selection_policy: Option<FeatureSelectionPolicy>Trait Implementations§
Source§impl Clone for PipelineDslShapePlan
impl Clone for PipelineDslShapePlan
Source§fn clone(&self) -> PipelineDslShapePlan
fn clone(&self) -> PipelineDslShapePlan
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 Debug for PipelineDslShapePlan
impl Debug for PipelineDslShapePlan
Source§impl<'de> Deserialize<'de> for PipelineDslShapePlan
impl<'de> Deserialize<'de> for PipelineDslShapePlan
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PipelineDslShapePlan, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PipelineDslShapePlan, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PipelineDslShapePlan
impl PartialEq for PipelineDslShapePlan
Source§fn eq(&self, other: &PipelineDslShapePlan) -> bool
fn eq(&self, other: &PipelineDslShapePlan) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PipelineDslShapePlan
impl Serialize for PipelineDslShapePlan
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PipelineDslShapePlan
Auto Trait Implementations§
impl Freeze for PipelineDslShapePlan
impl RefUnwindSafe for PipelineDslShapePlan
impl Send for PipelineDslShapePlan
impl Sync for PipelineDslShapePlan
impl Unpin for PipelineDslShapePlan
impl UnsafeUnpin for PipelineDslShapePlan
impl UnwindSafe for PipelineDslShapePlan
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