pub fn de_describe_db_log_files_list(
decoder: &mut ::aws_smithy_xml::decode::ScopedDecoder,
) -> Result<::std::vec::Vec<crate::types::DescribeDbLogFilesDetails>, ::aws_smithy_xml::decode::XmlDecodeError> {
let mut out = std::vec::Vec::new();
while let Some(mut tag) = decoder.next_tag() {
match tag.start_el() {
s if s.matches("DescribeDBLogFilesDetails") => {
out.push(
crate::protocol_serde::shape_describe_db_log_files_details::de_describe_db_log_files_details(&mut tag)
?
);
}
,
_ => {}
}
}
Ok(out)
}