pub fn ser_noncurrent_version_expiration(
input: &crate::types::NoncurrentVersionExpiration,
writer: ::aws_smithy_xml::encode::ElWriter,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
#[allow(unused_mut)]
let mut scope = writer.finish();
if input.noncurrent_days != 0 {
let mut inner_writer = scope.start_el("NoncurrentDays").finish();
inner_writer.data(::aws_smithy_types::primitive::Encoder::from(input.noncurrent_days).encode());
}
if let Some(var_1) = &input.newer_noncurrent_versions {
let mut inner_writer = scope.start_el("NewerNoncurrentVersions").finish();
inner_writer.data(::aws_smithy_types::primitive::Encoder::from(*var_1).encode());
}
scope.finish();
Ok(())
}
#[allow(clippy::needless_question_mark)]
pub fn de_noncurrent_version_expiration(
decoder: &mut ::aws_smithy_xml::decode::ScopedDecoder,
) -> ::std::result::Result<crate::types::NoncurrentVersionExpiration, ::aws_smithy_xml::decode::XmlDecodeError> {
#[allow(unused_mut)]
let mut builder = crate::types::NoncurrentVersionExpiration::builder();
while let Some(mut tag) = decoder.next_tag() {
match tag.start_el() {
s if s.matches("NoncurrentDays") => {
let var_2 =
Some(
{
<i32 as ::aws_smithy_types::primitive::Parse>::parse_smithy_primitive(
::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
)
.map_err(|_|::aws_smithy_xml::decode::XmlDecodeError::custom("expected (integer: `com.amazonaws.s3control#Days`)"))
}
?
)
;
builder = builder.set_noncurrent_days(var_2);
}
,
s if s.matches("NewerNoncurrentVersions") => {
let var_3 =
Some(
{
<i32 as ::aws_smithy_types::primitive::Parse>::parse_smithy_primitive(
::aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
)
.map_err(|_|::aws_smithy_xml::decode::XmlDecodeError::custom("expected (integer: `com.amazonaws.s3control#NoncurrentVersionCount`)"))
}
?
)
;
builder = builder.set_newer_noncurrent_versions(var_3);
}
,
_ => {}
}
}
Ok(builder.build())
}