pub struct ExploreReport {
pub fidelity: &'static str,
pub mode: &'static str,
pub note: &'static str,
pub seed: u64,
pub trials: Vec<ExploreTrial>,
pub minimized: Option<ExploreTrial>,
}Fields§
§fidelity: &'static str§mode: &'static str§note: &'static str§seed: u64§trials: Vec<ExploreTrial>§minimized: Option<ExploreTrial>Trait Implementations§
Source§impl Clone for ExploreReport
impl Clone for ExploreReport
Source§fn clone(&self) -> ExploreReport
fn clone(&self) -> ExploreReport
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 ExploreReport
impl Debug for ExploreReport
impl Eq for ExploreReport
Source§impl PartialEq for ExploreReport
impl PartialEq for ExploreReport
Source§impl Serialize for ExploreReport
impl Serialize for ExploreReport
impl StructuralPartialEq for ExploreReport
Auto Trait Implementations§
impl Freeze for ExploreReport
impl RefUnwindSafe for ExploreReport
impl Send for ExploreReport
impl Sync for ExploreReport
impl Unpin for ExploreReport
impl UnsafeUnpin for ExploreReport
impl UnwindSafe for ExploreReport
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