pub enum ObjectDetectionModel {
YOLO,
SSD,
FasterRCNN,
RetinaNet,
}Expand description
Object detection models
Variants§
Trait Implementations§
Source§impl Clone for ObjectDetectionModel
impl Clone for ObjectDetectionModel
Source§fn clone(&self) -> ObjectDetectionModel
fn clone(&self) -> ObjectDetectionModel
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 ObjectDetectionModel
impl Debug for ObjectDetectionModel
impl Copy for ObjectDetectionModel
Auto Trait Implementations§
impl Freeze for ObjectDetectionModel
impl RefUnwindSafe for ObjectDetectionModel
impl Send for ObjectDetectionModel
impl Sync for ObjectDetectionModel
impl Unpin for ObjectDetectionModel
impl UnwindSafe for ObjectDetectionModel
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