aws_sdk_ec2/protocol_serde/
shape_provisioned_bandwidth.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2#[allow(clippy::needless_question_mark)]
3pub fn de_provisioned_bandwidth(
4    decoder: &mut ::aws_smithy_xml::decode::ScopedDecoder,
5) -> ::std::result::Result<crate::types::ProvisionedBandwidth, ::aws_smithy_xml::decode::XmlDecodeError> {
6    #[allow(unused_mut)]
7    let mut builder = crate::types::ProvisionedBandwidth::builder();
8    while let Some(mut tag) = decoder.next_tag() {
9        match tag.start_el() {
10            s if s.matches("provisionTime") /* ProvisionTime com.amazonaws.ec2#ProvisionedBandwidth$ProvisionTime */ =>  {
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_provision_time(var_1);
22            }
23            ,
24            s if s.matches("provisioned") /* Provisioned com.amazonaws.ec2#ProvisionedBandwidth$Provisioned */ =>  {
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_provisioned(var_2);
35            }
36            ,
37            s if s.matches("requestTime") /* RequestTime com.amazonaws.ec2#ProvisionedBandwidth$RequestTime */ =>  {
38                let var_3 =
39                    Some(
40                        ::aws_smithy_types::DateTime::from_str(
41                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
42                            , ::aws_smithy_types::date_time::Format::DateTimeWithOffset
43                        )
44                        .map_err(|_|::aws_smithy_xml::decode::XmlDecodeError::custom("expected (timestamp: `com.amazonaws.ec2#DateTime`)"))
45                        ?
46                    )
47                ;
48                builder = builder.set_request_time(var_3);
49            }
50            ,
51            s if s.matches("requested") /* Requested com.amazonaws.ec2#ProvisionedBandwidth$Requested */ =>  {
52                let var_4 =
53                    Some(
54                        Result::<::std::string::String, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
55                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
56                            .into()
57                        )
58                        ?
59                    )
60                ;
61                builder = builder.set_requested(var_4);
62            }
63            ,
64            s if s.matches("status") /* Status com.amazonaws.ec2#ProvisionedBandwidth$Status */ =>  {
65                let var_5 =
66                    Some(
67                        Result::<::std::string::String, ::aws_smithy_xml::decode::XmlDecodeError>::Ok(
68                            ::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
69                            .into()
70                        )
71                        ?
72                    )
73                ;
74                builder = builder.set_status(var_5);
75            }
76            ,
77            _ => {}
78        }
79    }
80    Ok(builder.build())
81}