aws_sdk_ec2/protocol_serde/
shape_id_format.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2#[allow(clippy::needless_question_mark)]
3pub fn de_id_format(
4    decoder: &mut ::aws_smithy_xml::decode::ScopedDecoder,
5) -> ::std::result::Result<crate::types::IdFormat, ::aws_smithy_xml::decode::XmlDecodeError> {
6    #[allow(unused_mut)]
7    let mut builder = crate::types::IdFormat::builder();
8    while let Some(mut tag) = decoder.next_tag() {
9        match tag.start_el() {
10            s if s.matches("deadline") /* Deadline com.amazonaws.ec2#IdFormat$Deadline */ =>  {
11                let var_1 =
12                    Some(
13                        ::aws_smithy_types::DateTime::from_str(
14                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
15                            , ::aws_smithy_types::date_time::Format::DateTimeWithOffset
16                        )
17                        .map_err(|_|::aws_smithy_xml::decode::XmlDecodeError::custom("expected (timestamp: `com.amazonaws.ec2#DateTime`)"))
18                        ?
19                    )
20                ;
21                builder = builder.set_deadline(var_1);
22            }
23            ,
24            s if s.matches("resource") /* Resource com.amazonaws.ec2#IdFormat$Resource */ =>  {
25                let var_2 =
26                    Some(
27                        Result::<::std::string::String, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
28                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
29                            .into()
30                        )
31                        ?
32                    )
33                ;
34                builder = builder.set_resource(var_2);
35            }
36            ,
37            s if s.matches("useLongIds") /* UseLongIds com.amazonaws.ec2#IdFormat$UseLongIds */ =>  {
38                let var_3 =
39                    Some(
40                         {
41                            <bool as ::aws_smithy_types::primitive::Parse>::parse_smithy_primitive(
42                                ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
43                            )
44                            .map_err(|_|::aws_smithy_xml::decode::XmlDecodeError::custom("expected (boolean: `com.amazonaws.ec2#Boolean`)"))
45                        }
46                        ?
47                    )
48                ;
49                builder = builder.set_use_long_ids(var_3);
50            }
51            ,
52            _ => {}
53        }
54    }
55    Ok(builder.build())
56}