Struct aws_sdk_datazone::types::AcceptChoice
source · #[non_exhaustive]pub struct AcceptChoice {
pub prediction_target: Option<String>,
pub prediction_choice: Option<i32>,
pub edited_value: Option<String>,
}
Expand description
Specifies the prediction (aka, the automatically generated piece of metadata) and the target (for example, a column name) that can be accepted.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.prediction_target: Option<String>
Specifies the target (for example, a column name) where a prediction can be accepted.
prediction_choice: Option<i32>
Specifies the prediction (aka, the automatically generated piece of metadata) that can be accepted.
edited_value: Option<String>
The edit of the prediction.
Implementations§
source§impl AcceptChoice
impl AcceptChoice
sourcepub fn prediction_target(&self) -> Option<&str>
pub fn prediction_target(&self) -> Option<&str>
Specifies the target (for example, a column name) where a prediction can be accepted.
sourcepub fn prediction_choice(&self) -> Option<i32>
pub fn prediction_choice(&self) -> Option<i32>
Specifies the prediction (aka, the automatically generated piece of metadata) that can be accepted.
sourcepub fn edited_value(&self) -> Option<&str>
pub fn edited_value(&self) -> Option<&str>
The edit of the prediction.
source§impl AcceptChoice
impl AcceptChoice
sourcepub fn builder() -> AcceptChoiceBuilder
pub fn builder() -> AcceptChoiceBuilder
Creates a new builder-style object to manufacture AcceptChoice
.
Trait Implementations§
source§impl Clone for AcceptChoice
impl Clone for AcceptChoice
source§fn clone(&self) -> AcceptChoice
fn clone(&self) -> AcceptChoice
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 AcceptChoice
impl Debug for AcceptChoice
source§impl PartialEq for AcceptChoice
impl PartialEq for AcceptChoice
source§fn eq(&self, other: &AcceptChoice) -> bool
fn eq(&self, other: &AcceptChoice) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AcceptChoice
Auto Trait Implementations§
impl Freeze for AcceptChoice
impl RefUnwindSafe for AcceptChoice
impl Send for AcceptChoice
impl Sync for AcceptChoice
impl Unpin for AcceptChoice
impl UnwindSafe for AcceptChoice
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> 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>
Creates a shared type from an unshared type.