Enum cybergrape::spatial_data_format::GrapeTag
source · pub enum GrapeTag {
X,
Y,
Z,
Azimuth,
Elevation,
Range,
Pitch,
Yaw,
Roll,
}
Expand description
The GrapeTag identifies the kind of spatial data contained within a particular stream.
Variants§
X
X position in cartesian coordinates
Y
Y position in cartesian coordinates
Z
Z position in cartesian coordinates
Azimuth
Azimuth in spherical coordinates
Elevation
Elevation in spherical coordinates
Range
Range in spherical coordinates
Pitch
Pitch in angular direction
Yaw
Yaw in angular direction
Roll
Roll in angular direction
Trait Implementations§
source§impl<'de> Deserialize<'de> for GrapeTag
impl<'de> Deserialize<'de> for GrapeTag
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for GrapeTag
impl PartialEq for GrapeTag
impl Copy for GrapeTag
impl Eq for GrapeTag
impl StructuralPartialEq for GrapeTag
Auto Trait Implementations§
impl Freeze for GrapeTag
impl RefUnwindSafe for GrapeTag
impl Send for GrapeTag
impl Sync for GrapeTag
impl Unpin for GrapeTag
impl UnwindSafe for GrapeTag
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more