#[non_exhaustive]pub struct ModelInfrastructureConfigBuilder { /* private fields */ }
Expand description
A builder for ModelInfrastructureConfig
.
Implementations§
source§impl ModelInfrastructureConfigBuilder
impl ModelInfrastructureConfigBuilder
sourcepub fn infrastructure_type(self, input: ModelInfrastructureType) -> Self
pub fn infrastructure_type(self, input: ModelInfrastructureType) -> Self
The inference option to which to deploy your model. Possible values are the following:
-
RealTime
: Deploy to real-time inference.
sourcepub fn set_infrastructure_type(
self,
input: Option<ModelInfrastructureType>
) -> Self
pub fn set_infrastructure_type( self, input: Option<ModelInfrastructureType> ) -> Self
The inference option to which to deploy your model. Possible values are the following:
-
RealTime
: Deploy to real-time inference.
sourcepub fn real_time_inference_config(self, input: RealTimeInferenceConfig) -> Self
pub fn real_time_inference_config(self, input: RealTimeInferenceConfig) -> Self
The infrastructure configuration for deploying the model to real-time inference.
sourcepub fn set_real_time_inference_config(
self,
input: Option<RealTimeInferenceConfig>
) -> Self
pub fn set_real_time_inference_config( self, input: Option<RealTimeInferenceConfig> ) -> Self
The infrastructure configuration for deploying the model to real-time inference.
sourcepub fn build(self) -> ModelInfrastructureConfig
pub fn build(self) -> ModelInfrastructureConfig
Consumes the builder and constructs a ModelInfrastructureConfig
.
Trait Implementations§
source§impl Clone for ModelInfrastructureConfigBuilder
impl Clone for ModelInfrastructureConfigBuilder
source§fn clone(&self) -> ModelInfrastructureConfigBuilder
fn clone(&self) -> ModelInfrastructureConfigBuilder
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 Default for ModelInfrastructureConfigBuilder
impl Default for ModelInfrastructureConfigBuilder
source§fn default() -> ModelInfrastructureConfigBuilder
fn default() -> ModelInfrastructureConfigBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ModelInfrastructureConfigBuilder> for ModelInfrastructureConfigBuilder
impl PartialEq<ModelInfrastructureConfigBuilder> for ModelInfrastructureConfigBuilder
source§fn eq(&self, other: &ModelInfrastructureConfigBuilder) -> bool
fn eq(&self, other: &ModelInfrastructureConfigBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.