#[repr(C)]pub enum ScoreMethod {
SCORE_METHOD_RANSAC = 0,
SCORE_METHOD_MSAC = 1,
SCORE_METHOD_MAGSAC = 2,
SCORE_METHOD_LMEDS = 3,
}
Variants§
Trait Implementations§
Source§impl Clone for ScoreMethod
impl Clone for ScoreMethod
Source§fn clone(&self) -> ScoreMethod
fn clone(&self) -> ScoreMethod
Returns a copy 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 ScoreMethod
impl Debug for ScoreMethod
Source§impl From<ScoreMethod> for i32
impl From<ScoreMethod> for i32
Source§fn from(v: ScoreMethod) -> Self
fn from(v: ScoreMethod) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ScoreMethod
impl PartialEq for ScoreMethod
Source§impl TryFrom<i32> for ScoreMethod
impl TryFrom<i32> for ScoreMethod
impl Copy for ScoreMethod
impl Eq for ScoreMethod
impl StructuralPartialEq for ScoreMethod
Auto Trait Implementations§
impl Freeze for ScoreMethod
impl RefUnwindSafe for ScoreMethod
impl Send for ScoreMethod
impl Sync for ScoreMethod
impl Unpin for ScoreMethod
impl UnwindSafe for ScoreMethod
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