pub struct ReconstructionProblem<M> {
pub measurements: M,
pub model: ImagePlaneModel,
pub name: Option<String>,
}Fields§
§measurements: M§model: ImagePlaneModel§name: Option<String>Implementations§
Trait Implementations§
Source§impl<M: Clone> Clone for ReconstructionProblem<M>
impl<M: Clone> Clone for ReconstructionProblem<M>
Source§fn clone(&self) -> ReconstructionProblem<M>
fn clone(&self) -> ReconstructionProblem<M>
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<M> Freeze for ReconstructionProblem<M>where
M: Freeze,
impl<M> RefUnwindSafe for ReconstructionProblem<M>where
M: RefUnwindSafe,
impl<M> Send for ReconstructionProblem<M>where
M: Send,
impl<M> Sync for ReconstructionProblem<M>where
M: Sync,
impl<M> Unpin for ReconstructionProblem<M>where
M: Unpin,
impl<M> UnsafeUnpin for ReconstructionProblem<M>where
M: UnsafeUnpin,
impl<M> UnwindSafe for ReconstructionProblem<M>where
M: UnwindSafe,
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