pub struct ReplayAnswerabilityBaselineScore {
pub name: String,
pub answerable_questions: usize,
pub total_questions: usize,
pub answerability_rate: f64,
pub incorrect_action_risk: usize,
pub tokens: usize,
pub active_task_visible: bool,
}Fields§
§name: String§answerable_questions: usize§total_questions: usize§answerability_rate: f64§incorrect_action_risk: usize§tokens: usize§active_task_visible: boolTrait Implementations§
Source§impl Clone for ReplayAnswerabilityBaselineScore
impl Clone for ReplayAnswerabilityBaselineScore
Source§fn clone(&self) -> ReplayAnswerabilityBaselineScore
fn clone(&self) -> ReplayAnswerabilityBaselineScore
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for ReplayAnswerabilityBaselineScore
impl<'de> Deserialize<'de> for ReplayAnswerabilityBaselineScore
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
Source§impl PartialEq for ReplayAnswerabilityBaselineScore
impl PartialEq for ReplayAnswerabilityBaselineScore
Source§fn eq(&self, other: &ReplayAnswerabilityBaselineScore) -> bool
fn eq(&self, other: &ReplayAnswerabilityBaselineScore) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReplayAnswerabilityBaselineScore
Auto Trait Implementations§
impl Freeze for ReplayAnswerabilityBaselineScore
impl RefUnwindSafe for ReplayAnswerabilityBaselineScore
impl Send for ReplayAnswerabilityBaselineScore
impl Sync for ReplayAnswerabilityBaselineScore
impl Unpin for ReplayAnswerabilityBaselineScore
impl UnsafeUnpin for ReplayAnswerabilityBaselineScore
impl UnwindSafe for ReplayAnswerabilityBaselineScore
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