pub struct ClassifiedObstacle {
pub obstacle: DetectedObstacle,
pub class: ObstacleClass,
pub confidence: f32,
}Expand description
A detected obstacle with an attached classification.
Fields§
§obstacle: DetectedObstacle§class: ObstacleClass§confidence: f32Trait Implementations§
Source§impl Clone for ClassifiedObstacle
impl Clone for ClassifiedObstacle
Source§fn clone(&self) -> ClassifiedObstacle
fn clone(&self) -> ClassifiedObstacle
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 moreAuto Trait Implementations§
impl Freeze for ClassifiedObstacle
impl RefUnwindSafe for ClassifiedObstacle
impl Send for ClassifiedObstacle
impl Sync for ClassifiedObstacle
impl Unpin for ClassifiedObstacle
impl UnsafeUnpin for ClassifiedObstacle
impl UnwindSafe for ClassifiedObstacle
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