#[repr(u32)]pub enum IterativeDeconvAlgo {
LANDWEBER = 1,
RICHARDSONLUCY = 2,
DEFAULT = 0,
}Expand description
Iterative Deconvolution Algorithm
Variants§
LANDWEBER = 1
Land-Weber Algorithm
RICHARDSONLUCY = 2
Richardson-Lucy Algorithm
DEFAULT = 0
Default is Land-Weber algorithm
Trait Implementations§
Source§impl Clone for IterativeDeconvAlgo
impl Clone for IterativeDeconvAlgo
Source§fn clone(&self) -> IterativeDeconvAlgo
fn clone(&self) -> IterativeDeconvAlgo
Returns a duplicate of the value. Read more
1.0.0 · 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 IterativeDeconvAlgo
impl Debug for IterativeDeconvAlgo
Source§impl PartialEq for IterativeDeconvAlgo
impl PartialEq for IterativeDeconvAlgo
impl Copy for IterativeDeconvAlgo
impl StructuralPartialEq for IterativeDeconvAlgo
Auto Trait Implementations§
impl Freeze for IterativeDeconvAlgo
impl RefUnwindSafe for IterativeDeconvAlgo
impl Send for IterativeDeconvAlgo
impl Sync for IterativeDeconvAlgo
impl Unpin for IterativeDeconvAlgo
impl UnwindSafe for IterativeDeconvAlgo
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