#[non_exhaustive]pub struct UpdateModelOutput {
    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 UpdateModelOutput
 
impl UpdateModelOutput
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 UpdateModelOutput
 
impl UpdateModelOutput
sourcepub fn builder() -> UpdateModelOutputBuilder
 
pub fn builder() -> UpdateModelOutputBuilder
Creates a new builder-style object to manufacture UpdateModelOutput.
Trait Implementations§
source§impl Clone for UpdateModelOutput
 
impl Clone for UpdateModelOutput
source§fn clone(&self) -> UpdateModelOutput
 
fn clone(&self) -> UpdateModelOutput
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 UpdateModelOutput
 
impl Debug for UpdateModelOutput
source§impl PartialEq<UpdateModelOutput> for UpdateModelOutput
 
impl PartialEq<UpdateModelOutput> for UpdateModelOutput
source§fn eq(&self, other: &UpdateModelOutput) -> bool
 
fn eq(&self, other: &UpdateModelOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for UpdateModelOutput
 
impl RequestId for UpdateModelOutput
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 UpdateModelOutput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateModelOutput
impl Send for UpdateModelOutput
impl Sync for UpdateModelOutput
impl Unpin for UpdateModelOutput
impl UnwindSafe for UpdateModelOutput
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