pub struct Conditions {
pub text: String,
pub species_verified: Vec<String>,
pub species_unverified: Vec<String>,
pub in_vitro: bool,
pub in_vivo: bool,
pub human_data: bool,
pub clinical_trial: bool,
pub concentration_range: Option<String>,
pub duration: Option<String>,
pub age_group: Option<String>,
pub cell_type: Option<String>,
}Fields§
§text: String§species_verified: Vec<String>§species_unverified: Vec<String>§in_vitro: bool§in_vivo: bool§human_data: bool§clinical_trial: bool§concentration_range: Option<String>§duration: Option<String>§age_group: Option<String>§cell_type: Option<String>Trait Implementations§
Source§impl Clone for Conditions
impl Clone for Conditions
Source§fn clone(&self) -> Conditions
fn clone(&self) -> Conditions
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 Debug for Conditions
impl Debug for Conditions
Source§impl<'de> Deserialize<'de> for Conditions
impl<'de> Deserialize<'de> for Conditions
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
Auto Trait Implementations§
impl Freeze for Conditions
impl RefUnwindSafe for Conditions
impl Send for Conditions
impl Sync for Conditions
impl Unpin for Conditions
impl UnsafeUnpin for Conditions
impl UnwindSafe for Conditions
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