pub enum B2pointState {
B2NullState,
B2AddState,
B2PersistState,
B2RemoveState,
}Expand description
This is used for determining the state of contact points.
Variants§
B2NullState
< point does not exist
B2AddState
< point was added in the update
B2PersistState
< point persisted across the update
B2RemoveState
< point was removed in the update
Trait Implementations§
Source§impl Clone for B2pointState
impl Clone for B2pointState
Source§fn clone(&self) -> B2pointState
fn clone(&self) -> B2pointState
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 moreSource§impl Debug for B2pointState
impl Debug for B2pointState
Source§impl Default for B2pointState
impl Default for B2pointState
Source§impl PartialEq for B2pointState
impl PartialEq for B2pointState
Source§fn eq(&self, other: &B2pointState) -> bool
fn eq(&self, other: &B2pointState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for B2pointState
impl StructuralPartialEq for B2pointState
Auto Trait Implementations§
impl Freeze for B2pointState
impl RefUnwindSafe for B2pointState
impl Send for B2pointState
impl Sync for B2pointState
impl Unpin for B2pointState
impl UnsafeUnpin for B2pointState
impl UnwindSafe for B2pointState
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