pub struct Builder {}
Expand description
A builder for EnableApplicationLayerAutomaticResponseOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn build(self) -> EnableApplicationLayerAutomaticResponseOutput
pub fn build(self) -> EnableApplicationLayerAutomaticResponseOutput
Consumes the builder and constructs a EnableApplicationLayerAutomaticResponseOutput
.
Examples found in repository?
src/operation_deser.rs (line 2442)
2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444
pub fn parse_enable_application_layer_automatic_response_response(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::EnableApplicationLayerAutomaticResponseOutput,
crate::error::EnableApplicationLayerAutomaticResponseError,
> {
Ok({
#[allow(unused_mut)]
let mut output =
crate::output::enable_application_layer_automatic_response_output::Builder::default();
let _ = response;
output.build()
})
}