aws_sdk_s3/protocol_serde/
shape_put_bucket_ownership_controls_input.rspub fn ser_ownership_controls_http_payload(
payload: &::std::option::Option<crate::types::OwnershipControls>,
) -> Result<::std::vec::Vec<u8>, ::aws_smithy_types::error::operation::BuildError> {
let payload = match payload.as_ref() {
Some(t) => t,
None => return Ok(crate::protocol_serde::rest_xml_unset_struct_payload()),
};
Ok(crate::protocol_serde::shape_put_bucket_ownership_controls_input::ser_ownership_controls_payload(payload)?)
}
pub fn ser_ownership_controls_payload(
input: &crate::types::OwnershipControls,
) -> std::result::Result<std::vec::Vec<u8>, ::aws_smithy_types::error::operation::SerializationError> {
let mut out = String::new();
{
let mut writer = ::aws_smithy_xml::encode::XmlWriter::new(&mut out);
#[allow(unused_mut)]
let mut root = writer
.start_el("OwnershipControls")
.write_ns("http://s3.amazonaws.com/doc/2006-03-01/", None);
crate::protocol_serde::shape_ownership_controls::ser_ownership_controls(input, root)?
}
Ok(out.into_bytes())
}