#[repr(C)]pub struct FaceDetectionResults {
pub data: *mut FaceDetectionResult,
pub len: i32,
}Expand description
Face detection results batch. Caller must free via face_pipeline_results_free.
Fields§
§data: *mut FaceDetectionResultPointer to the first element of the results array.
len: i32Number of face detections in the array.
Auto Trait Implementations§
impl Freeze for FaceDetectionResults
impl RefUnwindSafe for FaceDetectionResults
impl !Send for FaceDetectionResults
impl !Sync for FaceDetectionResults
impl Unpin for FaceDetectionResults
impl UnsafeUnpin for FaceDetectionResults
impl UnwindSafe for FaceDetectionResults
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more