pub struct PlaneOrientationBD(/* private fields */);Expand description
Implementations§
Source§impl PlaneOrientationBD
impl PlaneOrientationBD
Sourcepub const HORIZONTAL_UPWARD: PlaneOrientationBD
pub const HORIZONTAL_UPWARD: PlaneOrientationBD
The detected plane is horizontal and faces upward (e.g. floor).
Sourcepub const HORIZONTAL_DOWNWARD: PlaneOrientationBD
pub const HORIZONTAL_DOWNWARD: PlaneOrientationBD
The detected plane is horizontal and faces downward (e.g. ceiling).
Sourcepub const VERTICAL: PlaneOrientationBD
pub const VERTICAL: PlaneOrientationBD
The detected plane is vertical (e.g. wall).
Sourcepub const ARBITRARY: PlaneOrientationBD
pub const ARBITRARY: PlaneOrientationBD
The detected plane has an arbitrary, non-vertical and non-horizontal orientation.
pub fn from_raw(x: i32) -> Self
pub fn into_raw(self) -> i32
Trait Implementations§
Source§impl Clone for PlaneOrientationBD
impl Clone for PlaneOrientationBD
Source§fn clone(&self) -> PlaneOrientationBD
fn clone(&self) -> PlaneOrientationBD
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 PlaneOrientationBD
impl Debug for PlaneOrientationBD
Source§impl Default for PlaneOrientationBD
impl Default for PlaneOrientationBD
Source§fn default() -> PlaneOrientationBD
fn default() -> PlaneOrientationBD
Returns the “default value” for a type. Read more
Source§impl PartialEq for PlaneOrientationBD
impl PartialEq for PlaneOrientationBD
impl Copy for PlaneOrientationBD
impl Eq for PlaneOrientationBD
impl StructuralPartialEq for PlaneOrientationBD
Auto Trait Implementations§
impl Freeze for PlaneOrientationBD
impl RefUnwindSafe for PlaneOrientationBD
impl Send for PlaneOrientationBD
impl Sync for PlaneOrientationBD
impl Unpin for PlaneOrientationBD
impl UnwindSafe for PlaneOrientationBD
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