Skip to main content

aws_sdk_ecs/protocol_serde/
shape_ephemeral_storage.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2pub fn ser_ephemeral_storage(
3    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
4    input: &crate::types::EphemeralStorage,
5) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
6    {
7        object.key("sizeInGiB").number(
8            #[allow(clippy::useless_conversion)]
9            ::aws_smithy_types::Number::NegInt((input.size_in_gib).into()),
10        );
11    }
12    Ok(())
13}
14
15pub(crate) fn de_ephemeral_storage<'a, I>(
16    tokens: &mut ::std::iter::Peekable<I>,
17    _value: &'a [u8],
18) -> ::std::result::Result<Option<crate::types::EphemeralStorage>, ::aws_smithy_json::deserialize::error::DeserializeError>
19where
20    I: Iterator<Item = Result<::aws_smithy_json::deserialize::Token<'a>, ::aws_smithy_json::deserialize::error::DeserializeError>>,
21{
22    match tokens.next().transpose()? {
23        Some(::aws_smithy_json::deserialize::Token::ValueNull { .. }) => Ok(None),
24        Some(::aws_smithy_json::deserialize::Token::StartObject { .. }) => {
25            #[allow(unused_mut)]
26            let mut builder = crate::types::builders::EphemeralStorageBuilder::default();
27            loop {
28                match tokens.next().transpose()? {
29                    Some(::aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
30                    Some(::aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => match key.to_unescaped()?.as_ref() {
31                        "sizeInGiB" => {
32                            builder = builder.set_size_in_gib(
33                                ::aws_smithy_json::deserialize::token::expect_number_or_null(tokens.next())?
34                                    .map(i32::try_from)
35                                    .transpose()?,
36                            );
37                        }
38                        _ => ::aws_smithy_json::deserialize::token::skip_value(tokens)?,
39                    },
40                    other => {
41                        return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
42                            "expected object key or end object, found: {other:?}"
43                        )))
44                    }
45                }
46            }
47            Ok(Some(crate::serde_util::ephemeral_storage_correct_errors(builder).build()))
48        }
49        _ => Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
50            "expected start object or null",
51        )),
52    }
53}