#[non_exhaustive]pub struct CreateModelOutputBuilder { /* private fields */ }Expand description
A builder for CreateModelOutput.
Implementations§
source§impl CreateModelOutputBuilder
 
impl CreateModelOutputBuilder
sourcepub fn content_type(self, input: impl Into<String>) -> Self
 
pub fn content_type(self, input: impl Into<String>) -> Self
The content-type for the model, for example, "application/json".
sourcepub fn set_content_type(self, input: Option<String>) -> Self
 
pub fn set_content_type(self, input: Option<String>) -> Self
The content-type for the model, for example, "application/json".
sourcepub fn description(self, input: impl Into<String>) -> Self
 
pub fn description(self, input: impl Into<String>) -> Self
The description of the model.
sourcepub fn set_description(self, input: Option<String>) -> Self
 
pub fn set_description(self, input: Option<String>) -> Self
The description of the model.
sourcepub fn set_model_id(self, input: Option<String>) -> Self
 
pub fn set_model_id(self, input: Option<String>) -> Self
The model identifier.
sourcepub fn name(self, input: impl Into<String>) -> Self
 
pub fn name(self, input: impl Into<String>) -> Self
The name of the model. Must be alphanumeric.
sourcepub fn set_name(self, input: Option<String>) -> Self
 
pub fn set_name(self, input: Option<String>) -> Self
The name of the model. Must be alphanumeric.
sourcepub fn schema(self, input: impl Into<String>) -> Self
 
pub fn schema(self, input: impl Into<String>) -> Self
The schema for the model. For application/json models, this should be JSON schema draft 4 model.
sourcepub fn set_schema(self, input: Option<String>) -> Self
 
pub fn set_schema(self, input: Option<String>) -> Self
The schema for the model. For application/json models, this should be JSON schema draft 4 model.
sourcepub fn build(self) -> CreateModelOutput
 
pub fn build(self) -> CreateModelOutput
Consumes the builder and constructs a CreateModelOutput.
Trait Implementations§
source§impl Clone for CreateModelOutputBuilder
 
impl Clone for CreateModelOutputBuilder
source§fn clone(&self) -> CreateModelOutputBuilder
 
fn clone(&self) -> CreateModelOutputBuilder
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 CreateModelOutputBuilder
 
impl Debug for CreateModelOutputBuilder
source§impl Default for CreateModelOutputBuilder
 
impl Default for CreateModelOutputBuilder
source§fn default() -> CreateModelOutputBuilder
 
fn default() -> CreateModelOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<CreateModelOutputBuilder> for CreateModelOutputBuilder
 
impl PartialEq<CreateModelOutputBuilder> for CreateModelOutputBuilder
source§fn eq(&self, other: &CreateModelOutputBuilder) -> bool
 
fn eq(&self, other: &CreateModelOutputBuilder) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateModelOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for CreateModelOutputBuilder
impl Send for CreateModelOutputBuilder
impl Sync for CreateModelOutputBuilder
impl Unpin for CreateModelOutputBuilder
impl UnwindSafe for CreateModelOutputBuilder
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