datadog_api_client/datadogV2/model/
model_library.rs

1// Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
2// This product includes software developed at Datadog (https://www.datadoghq.com/).
3// Copyright 2019-Present Datadog, Inc.
4use serde::de::{Error, MapAccess, Visitor};
5use serde::{Deserialize, Deserializer, Serialize};
6use serde_with::skip_serializing_none;
7use std::fmt::{self, Formatter};
8
9/// Vulnerability library.
10#[non_exhaustive]
11#[skip_serializing_none]
12#[derive(Clone, Debug, PartialEq, Serialize)]
13pub struct Library {
14    /// Vulnerability library name.
15    #[serde(rename = "name")]
16    pub name: String,
17    /// Vulnerability library version.
18    #[serde(rename = "version")]
19    pub version: Option<String>,
20    #[serde(flatten)]
21    pub additional_properties: std::collections::BTreeMap<String, serde_json::Value>,
22    #[serde(skip)]
23    #[serde(default)]
24    pub(crate) _unparsed: bool,
25}
26
27impl Library {
28    pub fn new(name: String) -> Library {
29        Library {
30            name,
31            version: None,
32            additional_properties: std::collections::BTreeMap::new(),
33            _unparsed: false,
34        }
35    }
36
37    pub fn version(mut self, value: String) -> Self {
38        self.version = Some(value);
39        self
40    }
41
42    pub fn additional_properties(
43        mut self,
44        value: std::collections::BTreeMap<String, serde_json::Value>,
45    ) -> Self {
46        self.additional_properties = value;
47        self
48    }
49}
50
51impl<'de> Deserialize<'de> for Library {
52    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
53    where
54        D: Deserializer<'de>,
55    {
56        struct LibraryVisitor;
57        impl<'a> Visitor<'a> for LibraryVisitor {
58            type Value = Library;
59
60            fn expecting(&self, f: &mut Formatter<'_>) -> fmt::Result {
61                f.write_str("a mapping")
62            }
63
64            fn visit_map<M>(self, mut map: M) -> Result<Self::Value, M::Error>
65            where
66                M: MapAccess<'a>,
67            {
68                let mut name: Option<String> = None;
69                let mut version: Option<String> = None;
70                let mut additional_properties: std::collections::BTreeMap<
71                    String,
72                    serde_json::Value,
73                > = std::collections::BTreeMap::new();
74                let mut _unparsed = false;
75
76                while let Some((k, v)) = map.next_entry::<String, serde_json::Value>()? {
77                    match k.as_str() {
78                        "name" => {
79                            name = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
80                        }
81                        "version" => {
82                            if v.is_null() {
83                                continue;
84                            }
85                            version = Some(serde_json::from_value(v).map_err(M::Error::custom)?);
86                        }
87                        &_ => {
88                            if let Ok(value) = serde_json::from_value(v.clone()) {
89                                additional_properties.insert(k, value);
90                            }
91                        }
92                    }
93                }
94                let name = name.ok_or_else(|| M::Error::missing_field("name"))?;
95
96                let content = Library {
97                    name,
98                    version,
99                    additional_properties,
100                    _unparsed,
101                };
102
103                Ok(content)
104            }
105        }
106
107        deserializer.deserialize_any(LibraryVisitor)
108    }
109}