1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Metadata structs used in traits, lists, and dynamic objects. pub use k8s_openapi::apimachinery::pkg::apis::meta::v1::{ListMeta, ObjectMeta}; use serde::{Deserialize, Serialize}; /// Type information that is flattened into every kubernetes object #[derive(Deserialize, Serialize, Clone, Default, Debug, Eq, PartialEq, Hash)] #[serde(rename_all = "camelCase")] pub struct TypeMeta { /// The version of the API pub api_version: String, /// The name of the API pub kind: String, }