#[non_exhaustive]pub struct GetExportOutputBuilder { /* private fields */ }
Expand description
A builder for GetExportOutput
.
Implementations§
source§impl GetExportOutputBuilder
impl GetExportOutputBuilder
sourcepub fn content_type(self, input: impl Into<String>) -> Self
pub fn content_type(self, input: impl Into<String>) -> Self
The content-type header value in the HTTP response. This will correspond to a valid 'accept' type in the request.
sourcepub fn set_content_type(self, input: Option<String>) -> Self
pub fn set_content_type(self, input: Option<String>) -> Self
The content-type header value in the HTTP response. This will correspond to a valid 'accept' type in the request.
sourcepub fn get_content_type(&self) -> &Option<String>
pub fn get_content_type(&self) -> &Option<String>
The content-type header value in the HTTP response. This will correspond to a valid 'accept' type in the request.
sourcepub fn content_disposition(self, input: impl Into<String>) -> Self
pub fn content_disposition(self, input: impl Into<String>) -> Self
The content-disposition header value in the HTTP response.
sourcepub fn set_content_disposition(self, input: Option<String>) -> Self
pub fn set_content_disposition(self, input: Option<String>) -> Self
The content-disposition header value in the HTTP response.
sourcepub fn get_content_disposition(&self) -> &Option<String>
pub fn get_content_disposition(&self) -> &Option<String>
The content-disposition header value in the HTTP response.
sourcepub fn body(self, input: Blob) -> Self
pub fn body(self, input: Blob) -> Self
The binary blob response to GetExport, which contains the export.
sourcepub fn set_body(self, input: Option<Blob>) -> Self
pub fn set_body(self, input: Option<Blob>) -> Self
The binary blob response to GetExport, which contains the export.
sourcepub fn get_body(&self) -> &Option<Blob>
pub fn get_body(&self) -> &Option<Blob>
The binary blob response to GetExport, which contains the export.
sourcepub fn build(self) -> GetExportOutput
pub fn build(self) -> GetExportOutput
Consumes the builder and constructs a GetExportOutput
.
Trait Implementations§
source§impl Clone for GetExportOutputBuilder
impl Clone for GetExportOutputBuilder
source§fn clone(&self) -> GetExportOutputBuilder
fn clone(&self) -> GetExportOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetExportOutputBuilder
impl Debug for GetExportOutputBuilder
source§impl Default for GetExportOutputBuilder
impl Default for GetExportOutputBuilder
source§fn default() -> GetExportOutputBuilder
fn default() -> GetExportOutputBuilder
source§impl PartialEq for GetExportOutputBuilder
impl PartialEq for GetExportOutputBuilder
source§fn eq(&self, other: &GetExportOutputBuilder) -> bool
fn eq(&self, other: &GetExportOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.