#[repr(i32)]pub enum SupportRegionType {
SR_FIXED = 0,
SR_CROSS = 1,
}
Variants§
SR_FIXED = 0
< Apply a constant support region
SR_CROSS = 1
< Apply a adaptive support region obtained by cross-based segmentation as described in Senst2014
Trait Implementations§
Source§impl Clone for SupportRegionType
impl Clone for SupportRegionType
Source§fn clone(&self) -> SupportRegionType
fn clone(&self) -> SupportRegionType
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 SupportRegionType
impl Debug for SupportRegionType
Source§impl From<SupportRegionType> for i32
impl From<SupportRegionType> for i32
Source§fn from(v: SupportRegionType) -> Self
fn from(v: SupportRegionType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SupportRegionType
impl PartialEq for SupportRegionType
Source§impl TryFrom<i32> for SupportRegionType
impl TryFrom<i32> for SupportRegionType
impl Copy for SupportRegionType
impl Eq for SupportRegionType
impl StructuralPartialEq for SupportRegionType
Auto Trait Implementations§
impl Freeze for SupportRegionType
impl RefUnwindSafe for SupportRegionType
impl Send for SupportRegionType
impl Sync for SupportRegionType
impl Unpin for SupportRegionType
impl UnwindSafe for SupportRegionType
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