Struct aws_sdk_apigateway::operation::get_sdk::GetSdkOutput
source · #[non_exhaustive]pub struct GetSdkOutput {
pub content_type: Option<String>,
pub content_disposition: Option<String>,
pub body: Option<Blob>,
/* private fields */
}
Expand description
The binary blob response to GetSdk, which contains the generated SDK.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.content_type: Option<String>
The content-type header value in the HTTP response.
content_disposition: Option<String>
The content-disposition header value in the HTTP response.
body: Option<Blob>
The binary blob response to GetSdk, which contains the generated SDK.
Implementations§
source§impl GetSdkOutput
impl GetSdkOutput
sourcepub fn content_type(&self) -> Option<&str>
pub fn content_type(&self) -> Option<&str>
The content-type header value in the HTTP response.
sourcepub fn content_disposition(&self) -> Option<&str>
pub fn content_disposition(&self) -> Option<&str>
The content-disposition header value in the HTTP response.
source§impl GetSdkOutput
impl GetSdkOutput
sourcepub fn builder() -> GetSdkOutputBuilder
pub fn builder() -> GetSdkOutputBuilder
Creates a new builder-style object to manufacture GetSdkOutput
.
Trait Implementations§
source§impl Clone for GetSdkOutput
impl Clone for GetSdkOutput
source§fn clone(&self) -> GetSdkOutput
fn clone(&self) -> GetSdkOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for GetSdkOutput
impl Debug for GetSdkOutput
source§impl PartialEq<GetSdkOutput> for GetSdkOutput
impl PartialEq<GetSdkOutput> for GetSdkOutput
source§fn eq(&self, other: &GetSdkOutput) -> bool
fn eq(&self, other: &GetSdkOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetSdkOutput
impl RequestId for GetSdkOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetSdkOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetSdkOutput
impl Send for GetSdkOutput
impl Sync for GetSdkOutput
impl Unpin for GetSdkOutput
impl UnwindSafe for GetSdkOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more