1 2 3 4 5 6 7 8
use serde::Deserialize; /// A reference to a step output that should be included in the chain results. #[derive(Debug, Clone, Deserialize)] pub struct ResultRef { #[serde(rename = "ref")] pub ref_: String, }