pub trait IntoMetadataKV {
// Required method
fn into_metadata_kv(self) -> Vec<KV>;
}Expand description
Trait for Metadata to be usable as Concourse Metadata. This trait can be derived if the
base struct implement serde::Deserialize
Required Methods§
Sourcefn into_metadata_kv(self) -> Vec<KV>
fn into_metadata_kv(self) -> Vec<KV>
Turn self into a Vec of internal::KV