pub trait IntoMetadataKV {
    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

Turn self into a Vec of internal::KV

Implementors