pub enum SolverType {
OrdEnc,
OrdDec,
SysEnc,
SysDec,
}Expand description
Identifies which solver configuration to use based on code type and direction.
Variants§
OrdEnc
Ordinary encoding solver.
OrdDec
Ordinary decoding solver.
SysEnc
Systematic encoding solver.
SysDec
Systematic decoding solver.
Trait Implementations§
Source§impl Clone for SolverType
impl Clone for SolverType
Source§fn clone(&self) -> SolverType
fn clone(&self) -> SolverType
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 moreimpl Copy for SolverType
Source§impl Debug for SolverType
impl Debug for SolverType
Source§impl PartialEq for SolverType
impl PartialEq for SolverType
impl StructuralPartialEq for SolverType
Auto Trait Implementations§
impl Freeze for SolverType
impl RefUnwindSafe for SolverType
impl Send for SolverType
impl Sync for SolverType
impl Unpin for SolverType
impl UnsafeUnpin for SolverType
impl UnwindSafe for SolverType
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