#[non_exhaustive]pub struct OptimizationModelAccessConfigBuilder { /* private fields */ }
Expand description
A builder for OptimizationModelAccessConfig
.
Implementations§
source§impl OptimizationModelAccessConfigBuilder
impl OptimizationModelAccessConfigBuilder
sourcepub fn accept_eula(self, input: bool) -> Self
pub fn accept_eula(self, input: bool) -> Self
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.
sourcepub fn set_accept_eula(self, input: Option<bool>) -> Self
pub fn set_accept_eula(self, input: Option<bool>) -> Self
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.
sourcepub fn get_accept_eula(&self) -> &Option<bool>
pub fn get_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.
sourcepub fn build(self) -> OptimizationModelAccessConfig
pub fn build(self) -> OptimizationModelAccessConfig
Consumes the builder and constructs a OptimizationModelAccessConfig
.
Trait Implementations§
source§impl Clone for OptimizationModelAccessConfigBuilder
impl Clone for OptimizationModelAccessConfigBuilder
source§fn clone(&self) -> OptimizationModelAccessConfigBuilder
fn clone(&self) -> OptimizationModelAccessConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for OptimizationModelAccessConfigBuilder
impl Default for OptimizationModelAccessConfigBuilder
source§fn default() -> OptimizationModelAccessConfigBuilder
fn default() -> OptimizationModelAccessConfigBuilder
source§impl PartialEq for OptimizationModelAccessConfigBuilder
impl PartialEq for OptimizationModelAccessConfigBuilder
source§fn eq(&self, other: &OptimizationModelAccessConfigBuilder) -> bool
fn eq(&self, other: &OptimizationModelAccessConfigBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for OptimizationModelAccessConfigBuilder
Auto Trait Implementations§
impl Freeze for OptimizationModelAccessConfigBuilder
impl RefUnwindSafe for OptimizationModelAccessConfigBuilder
impl Send for OptimizationModelAccessConfigBuilder
impl Sync for OptimizationModelAccessConfigBuilder
impl Unpin for OptimizationModelAccessConfigBuilder
impl UnwindSafe for OptimizationModelAccessConfigBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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