pub struct CompiledModelPair {
pub true_model: ImagePlaneModel,
pub reconstruction_model: ImagePlaneModel,
}Expand description
True and assumed reconstruction models compiled from concrete descriptions.
Fields§
§true_model: ImagePlaneModel§reconstruction_model: ImagePlaneModelImplementations§
Trait Implementations§
Source§impl Clone for CompiledModelPair
impl Clone for CompiledModelPair
Source§fn clone(&self) -> CompiledModelPair
fn clone(&self) -> CompiledModelPair
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 CompiledModelPair
impl Debug for CompiledModelPair
Source§impl<'de> Deserialize<'de> for CompiledModelPair
impl<'de> Deserialize<'de> for CompiledModelPair
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 CompiledModelPair
impl RefUnwindSafe for CompiledModelPair
impl Send for CompiledModelPair
impl Sync for CompiledModelPair
impl Unpin for CompiledModelPair
impl UnsafeUnpin for CompiledModelPair
impl UnwindSafe for CompiledModelPair
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