pub struct TrialOutcomes {
pub schema: String,
pub frontier_id: Option<String>,
pub updated_at: String,
pub rows: Vec<TrialOutcomeRow>,
}Fields§
§schema: String§frontier_id: Option<String>§updated_at: String§rows: Vec<TrialOutcomeRow>Trait Implementations§
Source§impl Clone for TrialOutcomes
impl Clone for TrialOutcomes
Source§fn clone(&self) -> TrialOutcomes
fn clone(&self) -> TrialOutcomes
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 TrialOutcomes
impl Debug for TrialOutcomes
Source§impl<'de> Deserialize<'de> for TrialOutcomes
impl<'de> Deserialize<'de> for TrialOutcomes
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 TrialOutcomes
impl RefUnwindSafe for TrialOutcomes
impl Send for TrialOutcomes
impl Sync for TrialOutcomes
impl Unpin for TrialOutcomes
impl UnsafeUnpin for TrialOutcomes
impl UnwindSafe for TrialOutcomes
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