#[repr(C)]pub struct acc_detector_presence_processing_result_t {
pub presence_detected: bool,
pub intra_presence_score: f32,
pub inter_presence_score: f32,
pub presence_distance: f32,
pub depthwise_intra_presence_scores: *mut f32,
pub depthwise_inter_presence_scores: *mut f32,
pub depthwise_presence_scores_length: u32,
}Expand description
@brief Presence detector results container
Fields§
§presence_detected: bool§intra_presence_score: f32§inter_presence_score: f32§presence_distance: f32§depthwise_intra_presence_scores: *mut f32§depthwise_inter_presence_scores: *mut f32§depthwise_presence_scores_length: u32Trait Implementations§
Source§impl Clone for acc_detector_presence_processing_result_t
impl Clone for acc_detector_presence_processing_result_t
Source§fn clone(&self) -> acc_detector_presence_processing_result_t
fn clone(&self) -> acc_detector_presence_processing_result_t
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 moreimpl Copy for acc_detector_presence_processing_result_t
Auto Trait Implementations§
impl Freeze for acc_detector_presence_processing_result_t
impl RefUnwindSafe for acc_detector_presence_processing_result_t
impl !Send for acc_detector_presence_processing_result_t
impl !Sync for acc_detector_presence_processing_result_t
impl Unpin for acc_detector_presence_processing_result_t
impl UnwindSafe for acc_detector_presence_processing_result_t
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