pub fn de_resource_drift_ignored_attributes(
decoder: &mut ::aws_smithy_xml::decode::ScopedDecoder,
) -> ::std::result::Result<::std::vec::Vec<crate::types::ResourceDriftIgnoredAttribute>, ::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("member") => {
out.push(
crate::protocol_serde::shape_resource_drift_ignored_attribute::de_resource_drift_ignored_attribute(&mut tag)
?
);
}
,
_ => {}
}
}
Ok(out)
}