Struct aws_sdk_apigatewayv2::operation::get_model::GetModelOutput   
source · #[non_exhaustive]pub struct GetModelOutput {
    pub content_type: Option<String>,
    pub description: Option<String>,
    pub model_id: Option<String>,
    pub name: Option<String>,
    pub schema: 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_type: Option<String>The content-type for the model, for example, "application/json".
description: Option<String>The description of the model.
model_id: Option<String>The model identifier.
name: Option<String>The name of the model. Must be alphanumeric.
schema: Option<String>The schema for the model. For application/json models, this should be JSON schema draft 4 model.
Implementations§
source§impl GetModelOutput
 
impl GetModelOutput
sourcepub fn content_type(&self) -> Option<&str>
 
pub fn content_type(&self) -> Option<&str>
The content-type for the model, for example, "application/json".
sourcepub fn description(&self) -> Option<&str>
 
pub fn description(&self) -> Option<&str>
The description of the model.
source§impl GetModelOutput
 
impl GetModelOutput
sourcepub fn builder() -> GetModelOutputBuilder
 
pub fn builder() -> GetModelOutputBuilder
Creates a new builder-style object to manufacture GetModelOutput.
Trait Implementations§
source§impl Clone for GetModelOutput
 
impl Clone for GetModelOutput
source§fn clone(&self) -> GetModelOutput
 
fn clone(&self) -> GetModelOutput
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 GetModelOutput
 
impl Debug for GetModelOutput
source§impl PartialEq<GetModelOutput> for GetModelOutput
 
impl PartialEq<GetModelOutput> for GetModelOutput
source§fn eq(&self, other: &GetModelOutput) -> bool
 
fn eq(&self, other: &GetModelOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for GetModelOutput
 
impl RequestId for GetModelOutput
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 GetModelOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetModelOutput
impl Send for GetModelOutput
impl Sync for GetModelOutput
impl Unpin for GetModelOutput
impl UnwindSafe for GetModelOutput
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