pub struct ExternalDataPlanEnvelope {
pub schema_version: u32,
pub schema_fingerprint: String,
pub plan_fingerprint: String,
pub relation_fingerprint: Option<String>,
pub data_content_fingerprint: Option<String>,
pub target_content_fingerprint: Option<String>,
pub coordinator_relations: Option<SampleRelationSet>,
}Fields§
§schema_version: u32§schema_fingerprint: String§plan_fingerprint: String§relation_fingerprint: Option<String>§data_content_fingerprint: Option<String>Optional additive identity of the concrete feature/input content. Legacy
V1 envelopes omit it; W1 training requests bind it through
TrainingDataIdentity before candidate caches are reusable.
target_content_fingerprint: Option<String>Optional additive identity of the concrete target content. It may be absent for prediction-only envelopes but is mandatory at the W1 training boundary.
coordinator_relations: Option<SampleRelationSet>Implementations§
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<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
Source§impl PartialEq for ExternalDataPlanEnvelope
impl PartialEq for ExternalDataPlanEnvelope
Source§impl Serialize for ExternalDataPlanEnvelope
impl Serialize for ExternalDataPlanEnvelope
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