IntoMetadataKV

Trait IntoMetadataKV 

Source
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§

Source

fn into_metadata_kv(self) -> Vec<KV>

Turn self into a Vec of internal::KV

Implementors§