pub enum AnalyticsNode {
Detection(ObjectDetection),
Classification(Classification),
Tracking(Tracking),
Segmentation(Segmentation),
Roi(Roi),
}Expand description
A node in the AnalyticsMeta relation graph.
Variants§
Detection(ObjectDetection)
Classification(Classification)
Tracking(Tracking)
Segmentation(Segmentation)
Roi(Roi)
Trait Implementations§
Source§impl Clone for AnalyticsNode
impl Clone for AnalyticsNode
Source§fn clone(&self) -> AnalyticsNode
fn clone(&self) -> AnalyticsNode
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 AnalyticsNode
impl Debug for AnalyticsNode
Source§impl PartialEq for AnalyticsNode
impl PartialEq for AnalyticsNode
impl StructuralPartialEq for AnalyticsNode
Auto Trait Implementations§
impl Freeze for AnalyticsNode
impl RefUnwindSafe for AnalyticsNode
impl Send for AnalyticsNode
impl Sync for AnalyticsNode
impl Unpin for AnalyticsNode
impl UnsafeUnpin for AnalyticsNode
impl UnwindSafe for AnalyticsNode
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