aws_sdk_databrew/protocol_serde/
shape_sample.rs1pub fn ser_sample(
3 object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
4 input: &crate::types::Sample,
5) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
6 if let Some(var_1) = &input.size {
7 object.key("Size").number(
8 #[allow(clippy::useless_conversion)]
9 ::aws_smithy_types::Number::NegInt((*var_1).into()),
10 );
11 }
12 {
13 object.key("Type").string(input.r#type.as_str());
14 }
15 Ok(())
16}
17
18pub(crate) fn de_sample<'a, I>(
19 tokens: &mut ::std::iter::Peekable<I>,
20 _value: &'a [u8],
21) -> ::std::result::Result<Option<crate::types::Sample>, ::aws_smithy_json::deserialize::error::DeserializeError>
22where
23 I: Iterator<Item = Result<::aws_smithy_json::deserialize::Token<'a>, ::aws_smithy_json::deserialize::error::DeserializeError>>,
24{
25 match tokens.next().transpose()? {
26 Some(::aws_smithy_json::deserialize::Token::ValueNull { .. }) => Ok(None),
27 Some(::aws_smithy_json::deserialize::Token::StartObject { .. }) => {
28 #[allow(unused_mut)]
29 let mut builder = crate::types::builders::SampleBuilder::default();
30 loop {
31 match tokens.next().transpose()? {
32 Some(::aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
33 Some(::aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => match key.to_unescaped()?.as_ref() {
34 "Size" => {
35 builder = builder.set_size(
36 ::aws_smithy_json::deserialize::token::expect_number_or_null(tokens.next())?
37 .map(i32::try_from)
38 .transpose()?,
39 );
40 }
41 "Type" => {
42 builder = builder.set_type(
43 ::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
44 .map(|s| s.to_unescaped().map(|u| crate::types::SampleType::from(u.as_ref())))
45 .transpose()?,
46 );
47 }
48 _ => ::aws_smithy_json::deserialize::token::skip_value(tokens)?,
49 },
50 other => {
51 return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
52 "expected object key or end object, found: {other:?}"
53 )))
54 }
55 }
56 }
57 Ok(Some(crate::serde_util::sample_correct_errors(builder).build().map_err(|err| {
58 ::aws_smithy_json::deserialize::error::DeserializeError::custom_source("Response was invalid", err)
59 })?))
60 }
61 _ => Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
62 "expected start object or null",
63 )),
64 }
65}