pub enum SegmentationQuality {
Fast = 0,
Balanced = 1,
Accurate = 2,
}Available on crate feature
segmentation only.Expand description
Apple person-segmentation quality.
Variants§
Trait Implementations§
Source§impl Clone for SegmentationQuality
impl Clone for SegmentationQuality
Source§fn clone(&self) -> SegmentationQuality
fn clone(&self) -> SegmentationQuality
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 moreSource§impl Debug for SegmentationQuality
impl Debug for SegmentationQuality
Source§impl PartialEq for SegmentationQuality
impl PartialEq for SegmentationQuality
Source§fn eq(&self, other: &SegmentationQuality) -> bool
fn eq(&self, other: &SegmentationQuality) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SegmentationQuality
impl Eq for SegmentationQuality
impl StructuralPartialEq for SegmentationQuality
Auto Trait Implementations§
impl Freeze for SegmentationQuality
impl RefUnwindSafe for SegmentationQuality
impl Send for SegmentationQuality
impl Sync for SegmentationQuality
impl Unpin for SegmentationQuality
impl UnsafeUnpin for SegmentationQuality
impl UnwindSafe for SegmentationQuality
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