k8s_openapi/v1_34/api/rbac/v1/
role_ref.rs

1// Generated from definition io.k8s.api.rbac.v1.RoleRef
2
3/// RoleRef contains information that points to the role being used
4#[derive(Clone, Debug, Default, PartialEq)]
5pub struct RoleRef {
6    /// APIGroup is the group for the resource being referenced
7    pub api_group: std::string::String,
8
9    /// Kind is the type of resource being referenced
10    pub kind: std::string::String,
11
12    /// Name is the name of resource being referenced
13    pub name: std::string::String,
14}
15
16impl crate::DeepMerge for RoleRef {
17    fn merge_from(&mut self, other: Self) {
18        crate::DeepMerge::merge_from(&mut self.api_group, other.api_group);
19        crate::DeepMerge::merge_from(&mut self.kind, other.kind);
20        crate::DeepMerge::merge_from(&mut self.name, other.name);
21    }
22}
23
24impl<'de> crate::serde::Deserialize<'de> for RoleRef {
25    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: crate::serde::Deserializer<'de> {
26        #[allow(non_camel_case_types)]
27        enum Field {
28            Key_api_group,
29            Key_kind,
30            Key_name,
31            Other,
32        }
33
34        impl<'de> crate::serde::Deserialize<'de> for Field {
35            fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where D: crate::serde::Deserializer<'de> {
36                struct Visitor;
37
38                impl crate::serde::de::Visitor<'_> for Visitor {
39                    type Value = Field;
40
41                    fn expecting(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
42                        f.write_str("field identifier")
43                    }
44
45                    fn visit_str<E>(self, v: &str) -> Result<Self::Value, E> where E: crate::serde::de::Error {
46                        Ok(match v {
47                            "apiGroup" => Field::Key_api_group,
48                            "kind" => Field::Key_kind,
49                            "name" => Field::Key_name,
50                            _ => Field::Other,
51                        })
52                    }
53                }
54
55                deserializer.deserialize_identifier(Visitor)
56            }
57        }
58
59        struct Visitor;
60
61        impl<'de> crate::serde::de::Visitor<'de> for Visitor {
62            type Value = RoleRef;
63
64            fn expecting(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
65                f.write_str("RoleRef")
66            }
67
68            fn visit_map<A>(self, mut map: A) -> Result<Self::Value, A::Error> where A: crate::serde::de::MapAccess<'de> {
69                let mut value_api_group: Option<std::string::String> = None;
70                let mut value_kind: Option<std::string::String> = None;
71                let mut value_name: Option<std::string::String> = None;
72
73                while let Some(key) = crate::serde::de::MapAccess::next_key::<Field>(&mut map)? {
74                    match key {
75                        Field::Key_api_group => value_api_group = crate::serde::de::MapAccess::next_value(&mut map)?,
76                        Field::Key_kind => value_kind = crate::serde::de::MapAccess::next_value(&mut map)?,
77                        Field::Key_name => value_name = crate::serde::de::MapAccess::next_value(&mut map)?,
78                        Field::Other => { let _: crate::serde::de::IgnoredAny = crate::serde::de::MapAccess::next_value(&mut map)?; },
79                    }
80                }
81
82                Ok(RoleRef {
83                    api_group: value_api_group.unwrap_or_default(),
84                    kind: value_kind.unwrap_or_default(),
85                    name: value_name.unwrap_or_default(),
86                })
87            }
88        }
89
90        deserializer.deserialize_struct(
91            "RoleRef",
92            &[
93                "apiGroup",
94                "kind",
95                "name",
96            ],
97            Visitor,
98        )
99    }
100}
101
102impl crate::serde::Serialize for RoleRef {
103    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: crate::serde::Serializer {
104        let mut state = serializer.serialize_struct(
105            "RoleRef",
106            3,
107        )?;
108        crate::serde::ser::SerializeStruct::serialize_field(&mut state, "apiGroup", &self.api_group)?;
109        crate::serde::ser::SerializeStruct::serialize_field(&mut state, "kind", &self.kind)?;
110        crate::serde::ser::SerializeStruct::serialize_field(&mut state, "name", &self.name)?;
111        crate::serde::ser::SerializeStruct::end(state)
112    }
113}
114
115#[cfg(feature = "schemars")]
116impl crate::schemars::JsonSchema for RoleRef {
117    fn schema_name() -> std::borrow::Cow<'static, str> {
118        "io.k8s.api.rbac.v1.RoleRef".into()
119    }
120
121    fn json_schema(__gen: &mut crate::schemars::SchemaGenerator) -> crate::schemars::Schema {
122        crate::schemars::json_schema!({
123            "description": "RoleRef contains information that points to the role being used",
124            "type": "object",
125            "properties": {
126                "apiGroup": {
127                    "description": "APIGroup is the group for the resource being referenced",
128                    "type": "string",
129                },
130                "kind": {
131                    "description": "Kind is the type of resource being referenced",
132                    "type": "string",
133                },
134                "name": {
135                    "description": "Name is the name of resource being referenced",
136                    "type": "string",
137                },
138            },
139            "required": [
140                "apiGroup",
141                "kind",
142                "name",
143            ],
144        })
145    }
146}