pub struct CompiledPipelineDsl {
pub graph: GraphSpec,
pub generation: GenerationSpec,
pub shape_plans: BTreeMap<NodeId, DataModelShapePlan>,
pub data_bindings: BTreeMap<NodeId, Vec<DataBinding>>,
pub branch_view_plans: Vec<BranchViewPlan>,
pub campaign_template: CampaignSpec,
pub generation_fingerprint: Option<String>,
}Fields§
§graph: GraphSpec§generation: GenerationSpec§shape_plans: BTreeMap<NodeId, DataModelShapePlan>§data_bindings: BTreeMap<NodeId, Vec<DataBinding>>§branch_view_plans: Vec<BranchViewPlan>§campaign_template: CampaignSpec§generation_fingerprint: Option<String>Trait Implementations§
Source§impl Clone for CompiledPipelineDsl
impl Clone for CompiledPipelineDsl
Source§fn clone(&self) -> CompiledPipelineDsl
fn clone(&self) -> CompiledPipelineDsl
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 CompiledPipelineDsl
impl Debug for CompiledPipelineDsl
Source§impl<'de> Deserialize<'de> for CompiledPipelineDsl
impl<'de> Deserialize<'de> for CompiledPipelineDsl
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CompiledPipelineDsl, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CompiledPipelineDsl, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CompiledPipelineDsl
impl PartialEq for CompiledPipelineDsl
Source§fn eq(&self, other: &CompiledPipelineDsl) -> bool
fn eq(&self, other: &CompiledPipelineDsl) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CompiledPipelineDsl
impl Serialize for CompiledPipelineDsl
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 CompiledPipelineDsl
Auto Trait Implementations§
impl Freeze for CompiledPipelineDsl
impl RefUnwindSafe for CompiledPipelineDsl
impl Send for CompiledPipelineDsl
impl Sync for CompiledPipelineDsl
impl Unpin for CompiledPipelineDsl
impl UnsafeUnpin for CompiledPipelineDsl
impl UnwindSafe for CompiledPipelineDsl
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