#[repr(u32)]pub enum TransformationInterpolationType {
Nearest = 0,
Linear = 1,
}Expand description
Transformation interpolation type.
Variants§
Trait Implementations§
Source§impl Clone for TransformationInterpolationType
impl Clone for TransformationInterpolationType
Source§fn clone(&self) -> TransformationInterpolationType
fn clone(&self) -> TransformationInterpolationType
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 From<TransformationInterpolationType> for k4a_transformation_interpolation_type_t
impl From<TransformationInterpolationType> for k4a_transformation_interpolation_type_t
Source§fn from(s: TransformationInterpolationType) -> Self
fn from(s: TransformationInterpolationType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TransformationInterpolationType
impl PartialEq for TransformationInterpolationType
Source§fn eq(&self, other: &TransformationInterpolationType) -> bool
fn eq(&self, other: &TransformationInterpolationType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TransformationInterpolationType
impl StructuralPartialEq for TransformationInterpolationType
Auto Trait Implementations§
impl Freeze for TransformationInterpolationType
impl RefUnwindSafe for TransformationInterpolationType
impl Send for TransformationInterpolationType
impl Sync for TransformationInterpolationType
impl Unpin for TransformationInterpolationType
impl UnwindSafe for TransformationInterpolationType
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