Struct aws_sdk_apigatewayv2::operation::export_api::ExportApiOutput   
source · #[non_exhaustive]pub struct ExportApiOutput {
    pub body: Option<Blob>,
    /* private fields */
}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.body: Option<Blob>Represents an exported definition of an API in a particular output format, for example, YAML. The API is serialized to the requested specification, for example, OpenAPI 3.0.
Implementations§
source§impl ExportApiOutput
 
impl ExportApiOutput
sourcepub fn builder() -> ExportApiOutputBuilder
 
pub fn builder() -> ExportApiOutputBuilder
Creates a new builder-style object to manufacture ExportApiOutput.
Trait Implementations§
source§impl Clone for ExportApiOutput
 
impl Clone for ExportApiOutput
source§fn clone(&self) -> ExportApiOutput
 
fn clone(&self) -> ExportApiOutput
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 ExportApiOutput
 
impl Debug for ExportApiOutput
source§impl PartialEq<ExportApiOutput> for ExportApiOutput
 
impl PartialEq<ExportApiOutput> for ExportApiOutput
source§fn eq(&self, other: &ExportApiOutput) -> bool
 
fn eq(&self, other: &ExportApiOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for ExportApiOutput
 
impl RequestId for ExportApiOutput
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 ExportApiOutput
Auto Trait Implementations§
impl RefUnwindSafe for ExportApiOutput
impl Send for ExportApiOutput
impl Sync for ExportApiOutput
impl Unpin for ExportApiOutput
impl UnwindSafe for ExportApiOutput
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