aws_sdk_s3/protocol_serde/
shape_get_bucket_encryption_output.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub(crate) fn de_server_side_encryption_configuration_payload(
    body: &[u8],
) -> std::result::Result<
    ::std::option::Option<crate::types::ServerSideEncryptionConfiguration>,
    crate::operation::get_bucket_encryption::GetBucketEncryptionError,
> {
    (!body.is_empty())
        .then(|| {
            crate::protocol_serde::shape_get_bucket_encryption_output::de_server_side_encryption_configuration(body)
                .map_err(crate::operation::get_bucket_encryption::GetBucketEncryptionError::unhandled)
        })
        .transpose()
}

pub fn de_server_side_encryption_configuration(
    inp: &[u8],
) -> Result<crate::types::ServerSideEncryptionConfiguration, ::aws_smithy_xml::decode::XmlDecodeError> {
    let mut doc = ::aws_smithy_xml::decode::Document::try_from(inp)?;
    #[allow(unused_mut)]
    let mut decoder = doc.root_element()?;
    let start_el = decoder.start_el();
    if !(start_el.matches("ServerSideEncryptionConfiguration")) {
        return Err(::aws_smithy_xml::decode::XmlDecodeError::custom(format!(
            "invalid root, expected ServerSideEncryptionConfiguration got {:?}",
            start_el
        )));
    }
    crate::protocol_serde::shape_server_side_encryption_configuration::de_server_side_encryption_configuration(&mut decoder)
}