pub struct CameraDepth<'a> {
pub depths: &'a [f32],
pub width: i32,
pub height: i32,
pub fx: f32,
pub fy: f32,
pub cx: f32,
pub cy: f32,
pub timestamp_ns: i64,
}Expand description
Borrowed view of a single depth camera frame, used as input to to_record_batch.
Fields§
§depths: &'a [f32]§width: i32§height: i32§fx: f32§fy: f32§cx: f32§cy: f32§timestamp_ns: i64Auto Trait Implementations§
impl<'a> Freeze for CameraDepth<'a>
impl<'a> RefUnwindSafe for CameraDepth<'a>
impl<'a> Send for CameraDepth<'a>
impl<'a> Sync for CameraDepth<'a>
impl<'a> Unpin for CameraDepth<'a>
impl<'a> UnsafeUnpin for CameraDepth<'a>
impl<'a> UnwindSafe for CameraDepth<'a>
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