#[non_exhaustive]pub struct CreateProjectInput {
pub project_name: Option<String>,
pub feature: Option<CustomizationFeature>,
pub auto_update: Option<ProjectAutoUpdate>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.project_name: Option<String>The name of the project to create.
feature: Option<CustomizationFeature>Specifies feature that is being customized. If no value is provided CUSTOM_LABELS is used as a default.
auto_update: Option<ProjectAutoUpdate>Specifies whether automatic retraining should be attempted for the versions of the project. Automatic retraining is done as a best effort. Required argument for Content Moderation. Applicable only to adapters.
Implementations§
source§impl CreateProjectInput
impl CreateProjectInput
sourcepub fn project_name(&self) -> Option<&str>
pub fn project_name(&self) -> Option<&str>
The name of the project to create.
sourcepub fn feature(&self) -> Option<&CustomizationFeature>
pub fn feature(&self) -> Option<&CustomizationFeature>
Specifies feature that is being customized. If no value is provided CUSTOM_LABELS is used as a default.
sourcepub fn auto_update(&self) -> Option<&ProjectAutoUpdate>
pub fn auto_update(&self) -> Option<&ProjectAutoUpdate>
Specifies whether automatic retraining should be attempted for the versions of the project. Automatic retraining is done as a best effort. Required argument for Content Moderation. Applicable only to adapters.
source§impl CreateProjectInput
impl CreateProjectInput
sourcepub fn builder() -> CreateProjectInputBuilder
pub fn builder() -> CreateProjectInputBuilder
Creates a new builder-style object to manufacture CreateProjectInput.
Trait Implementations§
source§impl Clone for CreateProjectInput
impl Clone for CreateProjectInput
source§fn clone(&self) -> CreateProjectInput
fn clone(&self) -> CreateProjectInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateProjectInput
impl Debug for CreateProjectInput
source§impl PartialEq for CreateProjectInput
impl PartialEq for CreateProjectInput
source§fn eq(&self, other: &CreateProjectInput) -> bool
fn eq(&self, other: &CreateProjectInput) -> bool
self and other values to be equal, and is used
by ==.