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