#[repr(C)]pub struct CameraRgbMeta {
pub width: i32,
pub height: i32,
pub fx: f32,
pub fy: f32,
pub cx: f32,
pub cy: f32,
pub timestamp_ns: i64,
}Expand description
C++-compatible metadata structs shared across the cxx::bridge boundary. Fields are named after physical quantities and need no further prose.
Fields§
§width: i32§height: i32§fx: f32§fy: f32§cx: f32§cy: f32§timestamp_ns: i64Trait Implementations§
Source§impl Clone for CameraRgbMeta
impl Clone for CameraRgbMeta
Source§impl ExternType for CameraRgbMeta
impl ExternType for CameraRgbMeta
impl Copy for CameraRgbMeta
Auto Trait Implementations§
impl Freeze for CameraRgbMeta
impl RefUnwindSafe for CameraRgbMeta
impl Send for CameraRgbMeta
impl Sync for CameraRgbMeta
impl Unpin for CameraRgbMeta
impl UnsafeUnpin for CameraRgbMeta
impl UnwindSafe for CameraRgbMeta
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