pub struct RelationLineageHints {
pub effect_relations: Vec<EffectRelationLineageHint>,
pub hypothesis_relations: Vec<HypothesisRelationLineageHint>,
pub verification_trial_relations: Vec<VerificationTrialRelationLineageHint>,
pub refutation_relations: Vec<RefutationRelationLineageHint>,
}Expand description
Optional sidecar carrying known relation-version lineage for bundle export.
Fields§
§effect_relations: Vec<EffectRelationLineageHint>Hints for effect-derived relations.
hypothesis_relations: Vec<HypothesisRelationLineageHint>Hints for hypothesis-edge relations.
verification_trial_relations: Vec<VerificationTrialRelationLineageHint>Hints for verification-trial relations.
refutation_relations: Vec<RefutationRelationLineageHint>Hints for refutation-artifact relations.
Implementations§
Trait Implementations§
Source§impl Clone for RelationLineageHints
impl Clone for RelationLineageHints
Source§fn clone(&self) -> RelationLineageHints
fn clone(&self) -> RelationLineageHints
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 RelationLineageHints
impl Debug for RelationLineageHints
Source§impl Default for RelationLineageHints
impl Default for RelationLineageHints
Source§fn default() -> RelationLineageHints
fn default() -> RelationLineageHints
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RelationLineageHints
impl<'de> Deserialize<'de> for RelationLineageHints
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
Auto Trait Implementations§
impl Freeze for RelationLineageHints
impl RefUnwindSafe for RelationLineageHints
impl Send for RelationLineageHints
impl Sync for RelationLineageHints
impl Unpin for RelationLineageHints
impl UnsafeUnpin for RelationLineageHints
impl UnwindSafe for RelationLineageHints
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