pub struct CaseStudy {
pub name: String,
pub domain: String,
pub description: String,
pub expected_insights: Vec<String>,
pub validation_criteria: Vec<ValidationCriterion>,
}Expand description
Real-world case studies
Fields§
§name: StringCase study name
domain: StringDomain (genomics, neuroscience, etc.)
description: StringData description
expected_insights: Vec<String>Expected insights
validation_criteria: Vec<ValidationCriterion>Validation criteria
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CaseStudy
impl RefUnwindSafe for CaseStudy
impl Send for CaseStudy
impl Sync for CaseStudy
impl Unpin for CaseStudy
impl UnwindSafe for CaseStudy
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§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 more