pub struct ExternalDataPlanEnvelope {
pub schema_version: u32,
pub schema_fingerprint: String,
pub plan_fingerprint: String,
pub relation_fingerprint: Option<String>,
pub coordinator_relations: Option<SampleRelationSet>,
}Fields§
§schema_version: u32§schema_fingerprint: String§plan_fingerprint: String§relation_fingerprint: Option<String>§coordinator_relations: Option<SampleRelationSet>Implementations§
Source§impl ExternalDataPlanEnvelope
impl ExternalDataPlanEnvelope
pub fn validate(&self) -> Result<(), DagMlError>
Trait Implementations§
Source§impl Clone for ExternalDataPlanEnvelope
impl Clone for ExternalDataPlanEnvelope
Source§fn clone(&self) -> ExternalDataPlanEnvelope
fn clone(&self) -> ExternalDataPlanEnvelope
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 ExternalDataPlanEnvelope
impl Debug for ExternalDataPlanEnvelope
Source§impl<'de> Deserialize<'de> for ExternalDataPlanEnvelope
impl<'de> Deserialize<'de> for ExternalDataPlanEnvelope
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExternalDataPlanEnvelope, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExternalDataPlanEnvelope, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ExternalDataPlanEnvelope
impl PartialEq for ExternalDataPlanEnvelope
Source§fn eq(&self, other: &ExternalDataPlanEnvelope) -> bool
fn eq(&self, other: &ExternalDataPlanEnvelope) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ExternalDataPlanEnvelope
impl Serialize for ExternalDataPlanEnvelope
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 ExternalDataPlanEnvelope
Auto Trait Implementations§
impl Freeze for ExternalDataPlanEnvelope
impl RefUnwindSafe for ExternalDataPlanEnvelope
impl Send for ExternalDataPlanEnvelope
impl Sync for ExternalDataPlanEnvelope
impl Unpin for ExternalDataPlanEnvelope
impl UnsafeUnpin for ExternalDataPlanEnvelope
impl UnwindSafe for ExternalDataPlanEnvelope
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