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