#[non_exhaustive]pub struct EvaluationFormNumericQuestionProperties {
    pub min_value: i32,
    pub max_value: i32,
    pub options: Option<Vec<EvaluationFormNumericQuestionOption>>,
    pub automation: Option<EvaluationFormNumericQuestionAutomation>,
}Expand description
Information about properties for a numeric question in an evaluation form.
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.min_value: i32The minimum answer value.
max_value: i32The maximum answer value.
options: Option<Vec<EvaluationFormNumericQuestionOption>>The scoring options of the numeric question.
automation: Option<EvaluationFormNumericQuestionAutomation>The automation properties of the numeric question.
Implementations§
source§impl EvaluationFormNumericQuestionProperties
 
impl EvaluationFormNumericQuestionProperties
sourcepub fn options(&self) -> Option<&[EvaluationFormNumericQuestionOption]>
 
pub fn options(&self) -> Option<&[EvaluationFormNumericQuestionOption]>
The scoring options of the numeric question.
sourcepub fn automation(&self) -> Option<&EvaluationFormNumericQuestionAutomation>
 
pub fn automation(&self) -> Option<&EvaluationFormNumericQuestionAutomation>
The automation properties of the numeric question.
source§impl EvaluationFormNumericQuestionProperties
 
impl EvaluationFormNumericQuestionProperties
sourcepub fn builder() -> EvaluationFormNumericQuestionPropertiesBuilder
 
pub fn builder() -> EvaluationFormNumericQuestionPropertiesBuilder
Creates a new builder-style object to manufacture EvaluationFormNumericQuestionProperties.
Trait Implementations§
source§impl Clone for EvaluationFormNumericQuestionProperties
 
impl Clone for EvaluationFormNumericQuestionProperties
source§fn clone(&self) -> EvaluationFormNumericQuestionProperties
 
fn clone(&self) -> EvaluationFormNumericQuestionProperties
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 PartialEq for EvaluationFormNumericQuestionProperties
 
impl PartialEq for EvaluationFormNumericQuestionProperties
source§fn eq(&self, other: &EvaluationFormNumericQuestionProperties) -> bool
 
fn eq(&self, other: &EvaluationFormNumericQuestionProperties) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for EvaluationFormNumericQuestionProperties
Auto Trait Implementations§
impl RefUnwindSafe for EvaluationFormNumericQuestionProperties
impl Send for EvaluationFormNumericQuestionProperties
impl Sync for EvaluationFormNumericQuestionProperties
impl Unpin for EvaluationFormNumericQuestionProperties
impl UnwindSafe for EvaluationFormNumericQuestionProperties
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