pub struct Builder {}Expand description
A builder for UnshareApplicationOutput.
Implementations§
source§impl Builder
impl Builder
sourcepub fn build(self) -> UnshareApplicationOutput
pub fn build(self) -> UnshareApplicationOutput
Consumes the builder and constructs a UnshareApplicationOutput.
Examples found in repository?
src/operation_deser.rs (line 1631)
1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633
pub fn parse_unshare_application_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::UnshareApplicationOutput,
crate::error::UnshareApplicationError,
> {
Ok({
#[allow(unused_mut)]
let mut output = crate::output::unshare_application_output::Builder::default();
let _ = response;
output.build()
})
}