#[non_exhaustive]pub struct ExportSchemaOutput {
    pub content: Option<String>,
    pub schema_arn: Option<String>,
    pub schema_name: Option<String>,
    pub schema_version: Option<String>,
    pub type: Option<String>,
    /* 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.content: Option<String>§schema_arn: Option<String>§schema_name: Option<String>§schema_version: Option<String>§type: Option<String>Implementations§
source§impl ExportSchemaOutput
 
impl ExportSchemaOutput
sourcepub fn builder() -> ExportSchemaOutputBuilder
 
pub fn builder() -> ExportSchemaOutputBuilder
Creates a new builder-style object to manufacture ExportSchemaOutput.
Trait Implementations§
source§impl Clone for ExportSchemaOutput
 
impl Clone for ExportSchemaOutput
source§fn clone(&self) -> ExportSchemaOutput
 
fn clone(&self) -> ExportSchemaOutput
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 ExportSchemaOutput
 
impl Debug for ExportSchemaOutput
source§impl PartialEq for ExportSchemaOutput
 
impl PartialEq for ExportSchemaOutput
source§fn eq(&self, other: &ExportSchemaOutput) -> bool
 
fn eq(&self, other: &ExportSchemaOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for ExportSchemaOutput
 
impl RequestId for ExportSchemaOutput
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 ExportSchemaOutput
Auto Trait Implementations§
impl RefUnwindSafe for ExportSchemaOutput
impl Send for ExportSchemaOutput
impl Sync for ExportSchemaOutput
impl Unpin for ExportSchemaOutput
impl UnwindSafe for ExportSchemaOutput
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
source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.