Struct aws_sdk_glue::types::builders::StatisticModelResultBuilder
source · #[non_exhaustive]pub struct StatisticModelResultBuilder { /* private fields */ }Expand description
A builder for StatisticModelResult.
Implementations§
source§impl StatisticModelResultBuilder
impl StatisticModelResultBuilder
sourcepub fn lower_bound(self, input: f64) -> Self
pub fn lower_bound(self, input: f64) -> Self
The lower bound.
sourcepub fn set_lower_bound(self, input: Option<f64>) -> Self
pub fn set_lower_bound(self, input: Option<f64>) -> Self
The lower bound.
sourcepub fn get_lower_bound(&self) -> &Option<f64>
pub fn get_lower_bound(&self) -> &Option<f64>
The lower bound.
sourcepub fn upper_bound(self, input: f64) -> Self
pub fn upper_bound(self, input: f64) -> Self
The upper bound.
sourcepub fn set_upper_bound(self, input: Option<f64>) -> Self
pub fn set_upper_bound(self, input: Option<f64>) -> Self
The upper bound.
sourcepub fn get_upper_bound(&self) -> &Option<f64>
pub fn get_upper_bound(&self) -> &Option<f64>
The upper bound.
sourcepub fn predicted_value(self, input: f64) -> Self
pub fn predicted_value(self, input: f64) -> Self
The predicted value.
sourcepub fn set_predicted_value(self, input: Option<f64>) -> Self
pub fn set_predicted_value(self, input: Option<f64>) -> Self
The predicted value.
sourcepub fn get_predicted_value(&self) -> &Option<f64>
pub fn get_predicted_value(&self) -> &Option<f64>
The predicted value.
sourcepub fn actual_value(self, input: f64) -> Self
pub fn actual_value(self, input: f64) -> Self
The actual value.
sourcepub fn set_actual_value(self, input: Option<f64>) -> Self
pub fn set_actual_value(self, input: Option<f64>) -> Self
The actual value.
sourcepub fn get_actual_value(&self) -> &Option<f64>
pub fn get_actual_value(&self) -> &Option<f64>
The actual value.
sourcepub fn inclusion_annotation(self, input: InclusionAnnotationValue) -> Self
pub fn inclusion_annotation(self, input: InclusionAnnotationValue) -> Self
The inclusion annotation.
sourcepub fn set_inclusion_annotation(
self,
input: Option<InclusionAnnotationValue>,
) -> Self
pub fn set_inclusion_annotation( self, input: Option<InclusionAnnotationValue>, ) -> Self
The inclusion annotation.
sourcepub fn get_inclusion_annotation(&self) -> &Option<InclusionAnnotationValue>
pub fn get_inclusion_annotation(&self) -> &Option<InclusionAnnotationValue>
The inclusion annotation.
sourcepub fn build(self) -> StatisticModelResult
pub fn build(self) -> StatisticModelResult
Consumes the builder and constructs a StatisticModelResult.
Trait Implementations§
source§impl Clone for StatisticModelResultBuilder
impl Clone for StatisticModelResultBuilder
source§fn clone(&self) -> StatisticModelResultBuilder
fn clone(&self) -> StatisticModelResultBuilder
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 StatisticModelResultBuilder
impl Debug for StatisticModelResultBuilder
source§impl Default for StatisticModelResultBuilder
impl Default for StatisticModelResultBuilder
source§fn default() -> StatisticModelResultBuilder
fn default() -> StatisticModelResultBuilder
Returns the “default value” for a type. Read more
impl StructuralPartialEq for StatisticModelResultBuilder
Auto Trait Implementations§
impl Freeze for StatisticModelResultBuilder
impl RefUnwindSafe for StatisticModelResultBuilder
impl Send for StatisticModelResultBuilder
impl Sync for StatisticModelResultBuilder
impl Unpin for StatisticModelResultBuilder
impl UnwindSafe for StatisticModelResultBuilder
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
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.