pub struct TrialComponentStatus {
pub message: Option<String>,
pub primary_status: Option<String>,
}
Expand description
The status of the trial component.
Fields§
§message: Option<String>
If the component failed, a message describing why.
primary_status: Option<String>
The status of the trial component.
Trait Implementations§
Source§impl Clone for TrialComponentStatus
impl Clone for TrialComponentStatus
Source§fn clone(&self) -> TrialComponentStatus
fn clone(&self) -> TrialComponentStatus
Returns a duplicate 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 Debug for TrialComponentStatus
impl Debug for TrialComponentStatus
Source§impl Default for TrialComponentStatus
impl Default for TrialComponentStatus
Source§fn default() -> TrialComponentStatus
fn default() -> TrialComponentStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrialComponentStatus
impl<'de> Deserialize<'de> for TrialComponentStatus
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 TrialComponentStatus
impl PartialEq for TrialComponentStatus
Source§impl Serialize for TrialComponentStatus
impl Serialize for TrialComponentStatus
impl StructuralPartialEq for TrialComponentStatus
Auto Trait Implementations§
impl Freeze for TrialComponentStatus
impl RefUnwindSafe for TrialComponentStatus
impl Send for TrialComponentStatus
impl Sync for TrialComponentStatus
impl Unpin for TrialComponentStatus
impl UnwindSafe for TrialComponentStatus
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