pub struct UpdateTestSuiteTestVoiceDto {
pub scorers: Option<Vec<TestSuiteTestVoiceScorersInner>>,
pub type: Option<TypeTrue>,
pub name: Option<String>,
pub script: Option<String>,
pub num_attempts: Option<f64>,
}
Fields§
§scorers: Option<Vec<TestSuiteTestVoiceScorersInner>>
These are the scorers used to evaluate the test.
type: Option<TypeTrue>
This is the type of the test, which must be voice.
name: Option<String>
This is the name of the test.
script: Option<String>
This is the script to be used for the voice test.
num_attempts: Option<f64>
This is the number of attempts allowed for the test.
Implementations§
Source§impl UpdateTestSuiteTestVoiceDto
impl UpdateTestSuiteTestVoiceDto
pub fn new() -> UpdateTestSuiteTestVoiceDto
Trait Implementations§
Source§impl Clone for UpdateTestSuiteTestVoiceDto
impl Clone for UpdateTestSuiteTestVoiceDto
Source§fn clone(&self) -> UpdateTestSuiteTestVoiceDto
fn clone(&self) -> UpdateTestSuiteTestVoiceDto
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateTestSuiteTestVoiceDto
impl Debug for UpdateTestSuiteTestVoiceDto
Source§impl Default for UpdateTestSuiteTestVoiceDto
impl Default for UpdateTestSuiteTestVoiceDto
Source§fn default() -> UpdateTestSuiteTestVoiceDto
fn default() -> UpdateTestSuiteTestVoiceDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateTestSuiteTestVoiceDto
impl<'de> Deserialize<'de> for UpdateTestSuiteTestVoiceDto
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for UpdateTestSuiteTestVoiceDto
Auto Trait Implementations§
impl Freeze for UpdateTestSuiteTestVoiceDto
impl RefUnwindSafe for UpdateTestSuiteTestVoiceDto
impl Send for UpdateTestSuiteTestVoiceDto
impl Sync for UpdateTestSuiteTestVoiceDto
impl Unpin for UpdateTestSuiteTestVoiceDto
impl UnwindSafe for UpdateTestSuiteTestVoiceDto
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