#[non_exhaustive]pub struct OptimizationModelAccessConfig {
pub accept_eula: Option<bool>,
}Expand description
The access configuration settings for the source ML model for an optimization job, where you can accept the model end-user license agreement (EULA).
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.accept_eula: Option<bool>Specifies agreement to the model end-user license agreement (EULA). The AcceptEula value must be explicitly defined as True in order to accept the EULA that this model requires. You are responsible for reviewing and complying with any applicable license terms and making sure they are acceptable for your use case before downloading or using a model.
Implementations§
source§impl OptimizationModelAccessConfig
impl OptimizationModelAccessConfig
sourcepub fn accept_eula(&self) -> Option<bool>
pub fn accept_eula(&self) -> Option<bool>
Specifies agreement to the model end-user license agreement (EULA). The AcceptEula value must be explicitly defined as True in order to accept the EULA that this model requires. You are responsible for reviewing and complying with any applicable license terms and making sure they are acceptable for your use case before downloading or using a model.
source§impl OptimizationModelAccessConfig
impl OptimizationModelAccessConfig
sourcepub fn builder() -> OptimizationModelAccessConfigBuilder
pub fn builder() -> OptimizationModelAccessConfigBuilder
Creates a new builder-style object to manufacture OptimizationModelAccessConfig.
Trait Implementations§
source§impl Clone for OptimizationModelAccessConfig
impl Clone for OptimizationModelAccessConfig
source§fn clone(&self) -> OptimizationModelAccessConfig
fn clone(&self) -> OptimizationModelAccessConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for OptimizationModelAccessConfig
impl PartialEq for OptimizationModelAccessConfig
source§fn eq(&self, other: &OptimizationModelAccessConfig) -> bool
fn eq(&self, other: &OptimizationModelAccessConfig) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OptimizationModelAccessConfig
Auto Trait Implementations§
impl Freeze for OptimizationModelAccessConfig
impl RefUnwindSafe for OptimizationModelAccessConfig
impl Send for OptimizationModelAccessConfig
impl Sync for OptimizationModelAccessConfig
impl Unpin for OptimizationModelAccessConfig
impl UnwindSafe for OptimizationModelAccessConfig
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more