pub struct SimulationResult {
pub measurements: MeasurementStack,
pub ground_truth_object: Array2<Complex64>,
pub true_model: ImagePlaneModel,
pub reconstruction_model: ImagePlaneModel,
pub camera: Option<CameraModel>,
pub illumination_acquisition_errors: Option<IlluminationAcquisitionErrors>,
pub parameters: SimulationParameters,
pub random_seed: u64,
}Fields§
§measurements: MeasurementStack§ground_truth_object: Array2<Complex64>§true_model: ImagePlaneModel§reconstruction_model: ImagePlaneModel§camera: Option<CameraModel>§illumination_acquisition_errors: Option<IlluminationAcquisitionErrors>§parameters: SimulationParameters§random_seed: u64Trait Implementations§
Source§impl Clone for SimulationResult
impl Clone for SimulationResult
Source§fn clone(&self) -> SimulationResult
fn clone(&self) -> SimulationResult
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 moreAuto Trait Implementations§
impl Freeze for SimulationResult
impl RefUnwindSafe for SimulationResult
impl Send for SimulationResult
impl Sync for SimulationResult
impl Unpin for SimulationResult
impl UnsafeUnpin for SimulationResult
impl UnwindSafe for SimulationResult
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