#[repr(C, packed(1))]pub struct PsDepthVector3 {
pub depthX: c_int,
pub depthY: c_int,
pub depthZ: PsDepthPixel,
}Expand description
@brief Contains depth information for a given pixel.
Fields§
§depthX: c_int!< The x coordinate of the pixel.
depthY: c_int!< The y coordinate of the pixel.
depthZ: PsDepthPixel!< The depth of the pixel, in millimeters.
Trait Implementations§
Source§impl Clone for PsDepthVector3
impl Clone for PsDepthVector3
Source§fn clone(&self) -> PsDepthVector3
fn clone(&self) -> PsDepthVector3
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PsDepthVector3
Source§impl Debug for PsDepthVector3
impl Debug for PsDepthVector3
Source§impl Default for PsDepthVector3
impl Default for PsDepthVector3
Source§fn default() -> PsDepthVector3
fn default() -> PsDepthVector3
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PsDepthVector3
impl RefUnwindSafe for PsDepthVector3
impl Send for PsDepthVector3
impl Sync for PsDepthVector3
impl Unpin for PsDepthVector3
impl UnsafeUnpin for PsDepthVector3
impl UnwindSafe for PsDepthVector3
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