#[repr(C)]pub struct FaceExpressionWeightsFB {
pub ty: StructureType,
pub next: *mut c_void,
pub weight_count: u32,
pub weights: *mut f32,
pub confidence_count: u32,
pub confidences: *mut f32,
pub status: FaceExpressionStatusFB,
pub time: Time,
}
Expand description
See XrFaceExpressionWeightsFB - defined by XR_FB_face_tracking
Fields§
§ty: StructureType
§next: *mut c_void
§weight_count: u32
§weights: *mut f32
§confidence_count: u32
§confidences: *mut f32
§status: FaceExpressionStatusFB
§time: Time
Implementations§
Source§impl FaceExpressionWeightsFB
impl FaceExpressionWeightsFB
pub const TYPE: StructureType = StructureType::FACE_EXPRESSION_WEIGHTS_FB
Sourcepub fn out(next: *mut BaseOutStructure) -> MaybeUninit<Self>
pub fn out(next: *mut BaseOutStructure) -> MaybeUninit<Self>
Construct a partially-initialized value suitable for passing to OpenXR
Trait Implementations§
Source§impl Clone for FaceExpressionWeightsFB
impl Clone for FaceExpressionWeightsFB
Source§fn clone(&self) -> FaceExpressionWeightsFB
fn clone(&self) -> FaceExpressionWeightsFB
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 FaceExpressionWeightsFB
impl Debug for FaceExpressionWeightsFB
impl Copy for FaceExpressionWeightsFB
Auto Trait Implementations§
impl Freeze for FaceExpressionWeightsFB
impl RefUnwindSafe for FaceExpressionWeightsFB
impl !Send for FaceExpressionWeightsFB
impl !Sync for FaceExpressionWeightsFB
impl Unpin for FaceExpressionWeightsFB
impl UnwindSafe for FaceExpressionWeightsFB
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